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