Enum async_graphql_parser::types::TypeKind [−][src]
pub enum TypeKind {
Scalar,
Object(ObjectType),
Interface(InterfaceType),
Union(UnionType),
Enum(EnumType),
InputObject(InputObjectType),
}Expand description
A kind of type; scalar, object, enum, etc.
Variants
A scalar type.
Object(ObjectType)An object type.
Interface(InterfaceType)An interface type.
Union(UnionType)A union type.
Enum(EnumType)An enum type.
InputObject(InputObjectType)An input object type.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for TypeKindimpl UnwindSafe for TypeKindBlanket Implementations
Mutably borrows from an owned value. Read more