Struct async_graphql_parser::types::FragmentDefinition
source · [−]pub struct FragmentDefinition {
pub type_condition: Positioned<TypeCondition>,
pub directives: Vec<Positioned<Directive>>,
pub selection_set: Positioned<SelectionSet>,
}
Expand description
The definition of a fragment, such as fragment userFields on User { name age }
.
Fields
type_condition: Positioned<TypeCondition>
The type this fragment operates on.
directives: Vec<Positioned<Directive>>
Directives in the fragment.
selection_set: Positioned<SelectionSet>
The fragment’s selection set.
Trait Implementations
sourceimpl Clone for FragmentDefinition
impl Clone for FragmentDefinition
sourcefn clone(&self) -> FragmentDefinition
fn clone(&self) -> FragmentDefinition
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for FragmentDefinition
impl Debug for FragmentDefinition
sourceimpl<'de> Deserialize<'de> for FragmentDefinition
impl<'de> Deserialize<'de> for FragmentDefinition
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Serialize for FragmentDefinition
impl Serialize for FragmentDefinition
Auto Trait Implementations
impl RefUnwindSafe for FragmentDefinition
impl Send for FragmentDefinition
impl Sync for FragmentDefinition
impl Unpin for FragmentDefinition
impl UnwindSafe for FragmentDefinition
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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