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
Scalar
A scalar type.
Object(ObjectType)
Tuple Fields
0: ObjectTypeAn object type.
Interface(InterfaceType)
Tuple Fields
An interface type.
Union(UnionType)
Tuple Fields
0: UnionTypeA union type.
Enum(EnumType)
Tuple Fields
0: EnumTypeAn enum type.
InputObject(InputObjectType)
Tuple Fields
An input object type.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for TypeKind
impl UnwindSafe for TypeKind
Blanket Implementations
Mutably borrows from an owned value. Read more
