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.6.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 Freeze for DirectiveDefinition
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)