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