pub struct Field<'a> {
pub alias: Option<Name<'a>>,
pub name: Name<'a>,
pub arguments: AstVec<'a, Argument<'a>>,
pub directives: AstVec<'a, Directive<'a>>,
pub selection_set: Option<SelectionSet<'a>>,
pub span: Span,
}Fields§
§alias: Option<Name<'a>>§name: Name<'a>§arguments: AstVec<'a, Argument<'a>>§directives: AstVec<'a, Directive<'a>>§selection_set: Option<SelectionSet<'a>>§span: SpanTrait Implementations§
impl<'a> StructuralPartialEq for Field<'a>
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for Field<'a>
impl<'a> !Send for Field<'a>
impl<'a> !UnwindSafe for Field<'a>
impl<'a> Freeze for Field<'a>
impl<'a> Sync for Field<'a>
impl<'a> Unpin for Field<'a>
impl<'a> UnsafeUnpin for Field<'a>
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