async-graphql/src/scalars/id.rs

43 lines
916 B
Rust
Raw Normal View History

2020-03-09 10:05:52 +00:00
use crate::{impl_scalar_internal, GQLScalar, Result, Value};
2020-03-01 16:59:04 +00:00
use std::ops::{Deref, DerefMut};
2020-03-09 10:05:52 +00:00
/// ID scalar
///
/// The input is a string or integer, and the output is a string.
2020-03-01 16:59:04 +00:00
#[derive(Clone, Ord, PartialOrd, Eq, PartialEq, Hash, Debug)]
pub struct ID(String);
impl Deref for ID {
type Target = String;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl DerefMut for ID {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
2020-03-05 06:23:55 +00:00
impl GQLScalar for ID {
2020-03-01 16:59:04 +00:00
fn type_name() -> &'static str {
"ID"
}
2020-03-04 02:38:07 +00:00
fn parse(value: &Value) -> Option<Self> {
2020-03-01 16:59:04 +00:00
match value {
2020-03-03 11:15:18 +00:00
Value::Int(n) => Some(ID(n.as_i64().unwrap().to_string())),
2020-03-04 02:38:07 +00:00
Value::String(s) => Some(ID(s.clone())),
2020-03-03 11:15:18 +00:00
_ => None,
2020-03-01 16:59:04 +00:00
}
}
2020-03-02 00:24:49 +00:00
fn to_json(&self) -> Result<serde_json::Value> {
2020-03-01 16:59:04 +00:00
Ok(self.0.clone().into())
}
}
2020-03-06 15:58:43 +00:00
2020-03-09 10:05:52 +00:00
impl_scalar_internal!(ID);