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
sourceimpl Clone for InlineFragment
impl Clone for InlineFragment
sourcefn clone(&self) -> InlineFragment
fn clone(&self) -> InlineFragment
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 InlineFragment
impl Debug for InlineFragment
sourceimpl<'de> Deserialize<'de> for InlineFragment
impl<'de> Deserialize<'de> for InlineFragment
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 InlineFragment
impl Serialize for InlineFragment
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
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