pub struct FieldSelectionSyntax<'src> {
pub alias_colon: Option<GraphQLToken<'src>>,
pub argument_parens: Option<DelimiterPair<'src>>,
}Expand description
Syntax detail for a FieldSelection.
Fields§
§alias_colon: Option<GraphQLToken<'src>>The colon between alias and field name. None
when no alias is present.
argument_parens: Option<DelimiterPair<'src>>Trait Implementations§
Source§impl<'src> Clone for FieldSelectionSyntax<'src>
impl<'src> Clone for FieldSelectionSyntax<'src>
Source§fn clone(&self) -> FieldSelectionSyntax<'src>
fn clone(&self) -> FieldSelectionSyntax<'src>
Returns a duplicate 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<'src> Debug for FieldSelectionSyntax<'src>
impl<'src> Debug for FieldSelectionSyntax<'src>
Source§impl<'src> PartialEq for FieldSelectionSyntax<'src>
impl<'src> PartialEq for FieldSelectionSyntax<'src>
impl<'src> StructuralPartialEq for FieldSelectionSyntax<'src>
Auto Trait Implementations§
impl<'src> Freeze for FieldSelectionSyntax<'src>
impl<'src> RefUnwindSafe for FieldSelectionSyntax<'src>
impl<'src> Send for FieldSelectionSyntax<'src>
impl<'src> Sync for FieldSelectionSyntax<'src>
impl<'src> Unpin for FieldSelectionSyntax<'src>
impl<'src> UnsafeUnpin for FieldSelectionSyntax<'src>
impl<'src> UnwindSafe for FieldSelectionSyntax<'src>
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