Enum graphql_parser::schema::TypeExtension[][src]

pub enum TypeExtension {
    Scalar(ScalarTypeExtension),
    Object(ObjectTypeExtension),
    Interface(InterfaceTypeExtension),
    Union(UnionTypeExtension),
    Enum(EnumTypeExtension),
    InputObject(InputObjectTypeExtension),
}

Variants

Trait Implementations

impl Debug for TypeExtension
[src]

Formats the value using the given formatter. Read more

impl Clone for TypeExtension
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TypeExtension
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Display for TypeExtension
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations