async-graphql/src/scalars/url.rs

22 lines
446 B
Rust
Raw Normal View History

2020-03-25 03:39:28 +00:00
use crate::{impl_scalar_internal, Result, Scalar, Value};
2020-03-20 03:56:08 +00:00
use url::Url;
impl Scalar for Url {
fn type_name() -> &'static str {
"Url"
}
fn parse(value: &Value) -> Option<Self> {
match value {
Value::String(s) => Some(Url::parse(s).ok()?),
_ => None,
}
}
2020-03-25 03:39:28 +00:00
fn to_json(&self) -> Result<serde_json::Value> {
Ok(self.to_string().into())
2020-03-20 03:56:08 +00:00
}
}
impl_scalar_internal!(Url);