Struct async_graphql_parser::types::InlineFragment
source · pub struct InlineFragment {
pub type_condition: Option<Positioned<TypeCondition>>,
pub directives: Vec<Positioned<Directive>>,
pub selection_set: Positioned<SelectionSet>,
}
Expand description
An inline fragment selector, such as ... on User { name }
.
Fields§
§type_condition: Option<Positioned<TypeCondition>>
The type condition.
directives: Vec<Positioned<Directive>>
The directives in the inline fragment.
selection_set: Positioned<SelectionSet>
The selected fields of the fragment.
Trait Implementations§
source§impl Clone for InlineFragment
impl Clone for InlineFragment
source§fn clone(&self) -> InlineFragment
fn clone(&self) -> InlineFragment
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 moresource§impl Debug for InlineFragment
impl Debug for InlineFragment
source§impl<'de> Deserialize<'de> for InlineFragment
impl<'de> Deserialize<'de> for InlineFragment
source§fn 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
Auto Trait Implementations§
impl RefUnwindSafe for InlineFragment
impl Send for InlineFragment
impl Sync for InlineFragment
impl Unpin for InlineFragment
impl UnwindSafe for InlineFragment
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