pub enum IntrospectionOutputTypeRef {
SCALAR(IntrospectionNamedTypeRef),
LIST {
of_type: Option<Box<IntrospectionOutputTypeRef>>,
},
NON_NULL {
of_type: Option<Box<IntrospectionOutputTypeRef>>,
},
ENUM(IntrospectionNamedTypeRef),
INPUT_OBJECT(IntrospectionNamedTypeRef),
UNION(IntrospectionNamedTypeRef),
OBJECT(IntrospectionNamedTypeRef),
INTERFACE(IntrospectionNamedTypeRef),
}
Variants§
SCALAR(IntrospectionNamedTypeRef)
LIST
Fields
§
of_type: Option<Box<IntrospectionOutputTypeRef>>
NON_NULL
Fields
§
of_type: Option<Box<IntrospectionOutputTypeRef>>
ENUM(IntrospectionNamedTypeRef)
INPUT_OBJECT(IntrospectionNamedTypeRef)
UNION(IntrospectionNamedTypeRef)
OBJECT(IntrospectionNamedTypeRef)
INTERFACE(IntrospectionNamedTypeRef)
Trait Implementations§
Source§impl Debug for IntrospectionOutputTypeRef
impl Debug for IntrospectionOutputTypeRef
Source§impl<'de> Deserialize<'de> for IntrospectionOutputTypeRef
impl<'de> Deserialize<'de> for IntrospectionOutputTypeRef
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 IntrospectionOutputTypeRef
impl RefUnwindSafe for IntrospectionOutputTypeRef
impl Send for IntrospectionOutputTypeRef
impl Sync for IntrospectionOutputTypeRef
impl Unpin for IntrospectionOutputTypeRef
impl UnwindSafe for IntrospectionOutputTypeRef
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