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
sourceimpl Debug for IntrospectionOutputTypeRef
impl Debug for IntrospectionOutputTypeRef
sourceimpl<'de> Deserialize<'de> for IntrospectionOutputTypeRef
impl<'de> Deserialize<'de> for IntrospectionOutputTypeRef
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
Auto Trait Implementations
impl RefUnwindSafe for IntrospectionOutputTypeRef
impl Send for IntrospectionOutputTypeRef
impl Sync for IntrospectionOutputTypeRef
impl Unpin for IntrospectionOutputTypeRef
impl UnwindSafe for IntrospectionOutputTypeRef
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