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 is_repeatable: bool,
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.
is_repeatable: bool
Whether the directive can be repeated.
locations: Vec<Positioned<DirectiveLocation>>
The locations the directive applies to.
Trait Implementations§
source§impl Clone for DirectiveDefinition
impl Clone for DirectiveDefinition
source§fn clone(&self) -> DirectiveDefinition
fn clone(&self) -> DirectiveDefinition
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl RefUnwindSafe for DirectiveDefinition
impl Send for DirectiveDefinition
impl Sync for DirectiveDefinition
impl Unpin for DirectiveDefinition
impl UnwindSafe for DirectiveDefinition
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more