[−][src]Trait async_graphql::InputValueType
Represents a GraphQL input value
Required methods
fn parse(value: Option<Value>) -> InputValueResult<Self>
Parse from Value. None represents undefined.
fn to_value(&self) -> Value
Convert to a Value for introspection.
Implementations on Foreign Types
impl InputValueType for bool[src]
impl InputValueType for char[src]
impl InputValueType for f32[src]
impl InputValueType for f64[src]
impl InputValueType for i8[src]
impl InputValueType for i16[src]
impl InputValueType for i32[src]
impl InputValueType for i64[src]
impl InputValueType for u8[src]
impl InputValueType for u16[src]
impl InputValueType for u32[src]
impl InputValueType for u64[src]
impl<T> InputValueType for BTreeMap<String, T> where
T: OutputValueType + InputValueType + Send + Sync, [src]
T: OutputValueType + InputValueType + Send + Sync,
impl<T> InputValueType for HashMap<String, T> where
T: OutputValueType + InputValueType + Send + Sync, [src]
T: OutputValueType + InputValueType + Send + Sync,