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
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