async-graphql/src/uuid.rs

39 lines
1015 B
Rust
Raw Normal View History

2020-03-01 16:52:05 +00:00
use crate::{QueryError, Result, Scalar, Value};
2020-03-01 10:54:34 +00:00
use uuid::Uuid;
2020-03-01 13:35:39 +00:00
impl Scalar for Uuid {
2020-03-01 10:54:34 +00:00
fn type_name() -> &'static str {
"UUID"
}
fn parse(value: Value) -> Result<Self> {
match value {
Value::String(s) => Ok(Uuid::parse_str(&s)?),
_ => {
2020-03-01 13:35:39 +00:00
return Err(QueryError::ExpectedType {
2020-03-01 10:54:34 +00:00
expect: Self::type_name().to_string(),
actual: value,
}
.into())
}
}
}
2020-03-01 16:52:05 +00:00
fn parse_from_json(value: serde_json::Value) -> Result<Self> {
match value {
serde_json::Value::String(s) => Ok(Uuid::parse_str(&s)?),
_ => {
return Err(QueryError::ExpectedJsonType {
expect: Self::type_name().to_string(),
actual: value,
}
.into())
}
}
}
2020-03-01 10:54:34 +00:00
fn into_json(self) -> Result<serde_json::Value> {
Ok(self.to_string().into())
}
}