Struct graphql_tools::static_graphql::query::FragmentSpread
source · [−]pub struct FragmentSpread<'a, T> where
T: Text<'a>, {
pub position: Pos,
pub fragment_name: <T as Text<'a>>::Value,
pub directives: Vec<Directive<'a, T>, Global>,
}
Fields
position: Pos
fragment_name: <T as Text<'a>>::Value
directives: Vec<Directive<'a, T>, Global>
Trait Implementations
sourceimpl<'a, T> Clone for FragmentSpread<'a, T> where
T: Clone + Text<'a>,
<T as Text<'a>>::Value: Clone,
impl<'a, T> Clone for FragmentSpread<'a, T> where
T: Clone + Text<'a>,
<T as Text<'a>>::Value: Clone,
sourcefn clone(&self) -> FragmentSpread<'a, T>
fn clone(&self) -> FragmentSpread<'a, T>
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
sourceimpl<'a, T> Debug for FragmentSpread<'a, T> where
T: Debug + Text<'a>,
<T as Text<'a>>::Value: Debug,
impl<'a, T> Debug for FragmentSpread<'a, T> where
T: Debug + Text<'a>,
<T as Text<'a>>::Value: Debug,
sourceimpl<'a, T> Display for FragmentSpread<'a, T> where
T: Text<'a>,
impl<'a, T> Display for FragmentSpread<'a, T> where
T: Text<'a>,
sourceimpl<'a, T> PartialEq<FragmentSpread<'a, T>> for FragmentSpread<'a, T> where
T: PartialEq<T> + Text<'a>,
<T as Text<'a>>::Value: PartialEq<<T as Text<'a>>::Value>,
impl<'a, T> PartialEq<FragmentSpread<'a, T>> for FragmentSpread<'a, T> where
T: PartialEq<T> + Text<'a>,
<T as Text<'a>>::Value: PartialEq<<T as Text<'a>>::Value>,
sourcefn eq(&self, other: &FragmentSpread<'a, T>) -> bool
fn eq(&self, other: &FragmentSpread<'a, T>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &FragmentSpread<'a, T>) -> bool
fn ne(&self, other: &FragmentSpread<'a, T>) -> bool
This method tests for !=
.
impl<'a, T> StructuralPartialEq for FragmentSpread<'a, T> where
T: Text<'a>,
Auto Trait Implementations
impl<'a, T> RefUnwindSafe for FragmentSpread<'a, T> where
<T as Text<'a>>::Value: RefUnwindSafe,
impl<'a, T> Send for FragmentSpread<'a, T> where
<T as Text<'a>>::Value: Send,
impl<'a, T> Sync for FragmentSpread<'a, T> where
<T as Text<'a>>::Value: Sync,
impl<'a, T> Unpin for FragmentSpread<'a, T> where
<T as Text<'a>>::Value: Unpin,
impl<'a, T> UnwindSafe for FragmentSpread<'a, T> where
<T as Text<'a>>::Value: UnwindSafe + RefUnwindSafe,
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