pub enum IntrospectionType {
SCALAR(IntrospectionScalarType),
OBJECT(IntrospectionObjectType),
INTERFACE(IntrospectionInterfaceType),
UNION(IntrospectionUnionType),
ENUM(IntrospectionEnumType),
INPUT_OBJECT(IntrospectionInputObjectType),
}
Variants§
SCALAR(IntrospectionScalarType)
OBJECT(IntrospectionObjectType)
INTERFACE(IntrospectionInterfaceType)
UNION(IntrospectionUnionType)
ENUM(IntrospectionEnumType)
INPUT_OBJECT(IntrospectionInputObjectType)
Implementations§
Trait Implementations§
Source§impl Debug for IntrospectionType
impl Debug for IntrospectionType
Source§impl<'de> Deserialize<'de> for IntrospectionType
impl<'de> Deserialize<'de> for IntrospectionType
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 IntrospectionType
impl RefUnwindSafe for IntrospectionType
impl Send for IntrospectionType
impl Sync for IntrospectionType
impl Unpin for IntrospectionType
impl UnwindSafe for IntrospectionType
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