pub struct QueryField {
pub name: String,
pub arguments: HashMap<String, String>,
pub fields: Vec<String>,
}Expand description
Parsed top-level query field
Fields§
§name: String§arguments: HashMap<String, String>§fields: Vec<String>Trait Implementations§
Source§impl Clone for QueryField
impl Clone for QueryField
Source§fn clone(&self) -> QueryField
fn clone(&self) -> QueryField
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 QueryField
impl RefUnwindSafe for QueryField
impl Send for QueryField
impl Sync for QueryField
impl Unpin for QueryField
impl UnsafeUnpin for QueryField
impl UnwindSafe for QueryField
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