pub struct SelectionSet {
pub operation: &'static str,
pub alias: Option<&'static str>,
pub fields: Option<Vec<SelectionSet>>,
pub arguments: Option<HashMap<&'static str, Values>>,
pub is_union: bool,
}Fields§
§operation: &'static str§alias: Option<&'static str>§fields: Option<Vec<SelectionSet>>§arguments: Option<HashMap<&'static str, Values>>§is_union: boolTrait Implementations§
Source§impl Clone for SelectionSet
impl Clone for SelectionSet
Source§fn clone(&self) -> SelectionSet
fn clone(&self) -> SelectionSet
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 moreAuto Trait Implementations§
impl Freeze for SelectionSet
impl RefUnwindSafe for SelectionSet
impl Send for SelectionSet
impl Sync for SelectionSet
impl Unpin for SelectionSet
impl UnwindSafe for SelectionSet
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