Struct graphql_parser::schema::SchemaDefinition[][src]

pub struct SchemaDefinition {
    pub position: Pos,
    pub directives: Vec<Directive>,
    pub query: Option<NamedType>,
    pub mutation: Option<NamedType>,
    pub subscription: Option<NamedType>,
}

Fields

Trait Implementations

impl Debug for SchemaDefinition
[src]

Formats the value using the given formatter. Read more

impl Clone for SchemaDefinition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for SchemaDefinition
[src]

Returns the "default value" for a type. Read more

impl PartialEq for SchemaDefinition
[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 SchemaDefinition
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations