pub enum IntrospectionType<'a> {
Scalar(IntrospectionScalarType<'a>),
Object(IntrospectionObjectType<'a>),
Interface(IntrospectionInterfaceType<'a>),
Union(IntrospectionUnionType<'a>),
Enum(IntrospectionEnumType<'a>),
InputObject(IntrospectionInputObjectType<'a>),
}
Variants§
Scalar(IntrospectionScalarType<'a>)
Object(IntrospectionObjectType<'a>)
Interface(IntrospectionInterfaceType<'a>)
Union(IntrospectionUnionType<'a>)
Enum(IntrospectionEnumType<'a>)
InputObject(IntrospectionInputObjectType<'a>)
Implementations§
Trait Implementations§
Source§impl<'a> Debug for IntrospectionType<'a>
impl<'a> Debug for IntrospectionType<'a>
Source§impl<'de: 'a, 'a> Deserialize<'de> for IntrospectionType<'a>
impl<'de: 'a, 'a> Deserialize<'de> for IntrospectionType<'a>
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<'a> Freeze for IntrospectionType<'a>
impl<'a> RefUnwindSafe for IntrospectionType<'a>
impl<'a> Send for IntrospectionType<'a>
impl<'a> Sync for IntrospectionType<'a>
impl<'a> Unpin for IntrospectionType<'a>
impl<'a> UnwindSafe for IntrospectionType<'a>
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