pub enum IntrospectionInputTypeRef {
LIST {
of_type: Option<Box<IntrospectionInputTypeRef>>,
},
NON_NULL {
of_type: Option<Box<IntrospectionInputTypeRef>>,
},
SCALAR(IntrospectionNamedTypeRef),
ENUM(IntrospectionNamedTypeRef),
INPUT_OBJECT(IntrospectionNamedTypeRef),
}
Variants§
LIST
Fields
§
of_type: Option<Box<IntrospectionInputTypeRef>>
NON_NULL
Fields
§
of_type: Option<Box<IntrospectionInputTypeRef>>
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
Auto Trait Implementations§
impl Freeze for IntrospectionInputTypeRef
impl RefUnwindSafe for IntrospectionInputTypeRef
impl Send for IntrospectionInputTypeRef
impl Sync for IntrospectionInputTypeRef
impl Unpin for IntrospectionInputTypeRef
impl UnwindSafe for IntrospectionInputTypeRef
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more