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
sourceimpl Debug for IntrospectionInputTypeRef
impl Debug for IntrospectionInputTypeRef
sourceimpl<'de> Deserialize<'de> for IntrospectionInputTypeRef
impl<'de> Deserialize<'de> for IntrospectionInputTypeRef
sourcefn 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
sourceimpl Serialize for IntrospectionInputTypeRef
impl Serialize for IntrospectionInputTypeRef
Auto Trait Implementations
impl RefUnwindSafe for IntrospectionInputTypeRef
impl Send for IntrospectionInputTypeRef
impl Sync for IntrospectionInputTypeRef
impl Unpin for IntrospectionInputTypeRef
impl UnwindSafe for IntrospectionInputTypeRef
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more