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 AstPositionExt for InlineFragment
impl AstPositionExt for InlineFragment
Source§fn default_position(self) -> Positioned<Self>
fn default_position(self) -> Positioned<Self>
Create a positioned version of this AST node with the default position (0:0).
Source§fn with_position(self, pos: Pos) -> Positioned<Self>
fn with_position(self, pos: Pos) -> Positioned<Self>
Create a positioned version of this AST node with the given position.
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<InlineFragment, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<InlineFragment, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl IntoAst<InlineFragment> for InlineFragment
impl IntoAst<InlineFragment> for InlineFragment
Source§fn into_ast(self) -> InlineFragment
fn into_ast(self) -> InlineFragment
Returns the input value unchanged.
Source§impl Serialize for InlineFragment
impl Serialize for InlineFragment
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for InlineFragment
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