async-graphql/src/scalars/bool.rs

38 lines
965 B
Rust
Raw Normal View History

2020-03-02 00:24:49 +00:00
use crate::{GQLType, QueryError, Result, Scalar, Value};
2020-03-01 10:54:34 +00:00
2020-03-02 00:24:49 +00:00
impl Scalar for bool {
2020-03-01 10:54:34 +00:00
fn type_name() -> &'static str {
2020-03-02 00:24:49 +00:00
"Boolean!"
2020-03-01 10:54:34 +00:00
}
fn parse(value: Value) -> Result<Self> {
match value {
2020-03-02 00:24:49 +00:00
Value::Boolean(n) => Ok(n),
2020-03-01 10:54:34 +00:00
_ => {
2020-03-01 13:35:39 +00:00
return Err(QueryError::ExpectedType {
2020-03-02 00:24:49 +00:00
expect: <Self as GQLType>::type_name(),
2020-03-01 10:54:34 +00:00
actual: value,
}
.into())
}
}
}
2020-03-01 16:52:05 +00:00
fn parse_from_json(value: serde_json::Value) -> Result<Self> {
match value {
2020-03-02 00:24:49 +00:00
serde_json::Value::Bool(n) => Ok(n),
2020-03-01 16:52:05 +00:00
_ => {
return Err(QueryError::ExpectedJsonType {
2020-03-02 00:24:49 +00:00
expect: <Self as GQLType>::type_name(),
2020-03-01 16:52:05 +00:00
actual: value,
}
.into())
}
}
}
2020-03-02 00:24:49 +00:00
fn to_json(&self) -> Result<serde_json::Value> {
Ok((*self).into())
2020-03-01 10:54:34 +00:00
}
}