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