Struct async_graphql_parser::types::DirectiveDefinition
source · [−]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
sourceimpl Clone for DirectiveDefinition
impl Clone for DirectiveDefinition
sourcefn clone(&self) -> DirectiveDefinition
fn clone(&self) -> DirectiveDefinition
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more