pub enum IntrospectionInputTypeRef {
LIST {
of_type: Option<Box<IntrospectionOutputTypeRef>>,
},
NON_NULL {
of_type: Option<Box<IntrospectionOutputTypeRef>>,
},
SCALAR(IntrospectionNamedTypeRef),
ENUM(IntrospectionNamedTypeRef),
INPUT_OBJECT(IntrospectionNamedTypeRef),
}
Variants§
LIST
Fields
§
of_type: Option<Box<IntrospectionOutputTypeRef>>
NON_NULL
Fields
§
of_type: Option<Box<IntrospectionOutputTypeRef>>
SCALAR(IntrospectionNamedTypeRef)
ENUM(IntrospectionNamedTypeRef)
INPUT_OBJECT(IntrospectionNamedTypeRef)
Trait Implementations§
source§impl Debug for IntrospectionInputTypeRef
impl Debug for IntrospectionInputTypeRef
source§impl<'de> Deserialize<'de> for IntrospectionInputTypeRef
impl<'de> Deserialize<'de> for IntrospectionInputTypeRef
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more