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.
An object type.
Tuple Fields of Object
0: ObjectTypeAn interface type.
Tuple Fields of Interface
A union type.
Tuple Fields of Union
0: UnionTypeAn enum type.
Tuple Fields of Enum
0: EnumTypeAn input object type.
Tuple Fields of InputObject
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for TypeKind
impl UnwindSafe for TypeKind
Blanket Implementations
Mutably borrows from an owned value. Read more