pub struct GQLFragment {
pub name: String,
pub on_type: String,
pub selections: Vec<GQLSelectionField>,
pub directives: Vec<String>,
}Fields§
§name: String§on_type: String§selections: Vec<GQLSelectionField>§directives: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for GQLFragment
impl Clone for GQLFragment
Source§fn clone(&self) -> GQLFragment
fn clone(&self) -> GQLFragment
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 GQLFragment
impl RefUnwindSafe for GQLFragment
impl Send for GQLFragment
impl Sync for GQLFragment
impl Unpin for GQLFragment
impl UnsafeUnpin for GQLFragment
impl UnwindSafe for GQLFragment
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