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.
Tuple Fields of Object
0: ObjectType
Interface(InterfaceType)
An interface type.
Tuple Fields of Interface
Union(UnionType)
A union type.
Tuple Fields of Union
0: UnionType
Enum(EnumType)
An enum type.
Tuple Fields of Enum
0: EnumType
InputObject(InputObjectType)
An 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