Struct async_graphql_parser::types::DirectiveDefinition [−][src]
pub struct DirectiveDefinition {
pub description: Option<Positioned<String>>,
pub name: Positioned<Name>,
pub arguments: Vec<Positioned<InputValueDefinition>>,
pub locations: Vec<Positioned<DirectiveLocation>>,
}
Expand description
The definition of a directive in a service.
Fields
description: Option<Positioned<String>>
The description of the directive.
name: Positioned<Name>
The name of the directive.
arguments: Vec<Positioned<InputValueDefinition>>
The arguments of the directive.
locations: Vec<Positioned<DirectiveLocation>>
The locations the directive applies to.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for DirectiveDefinition
impl Send for DirectiveDefinition
impl Sync for DirectiveDefinition
impl Unpin for DirectiveDefinition
impl UnwindSafe for DirectiveDefinition
Blanket Implementations
Mutably borrows from an owned value. Read more