pub struct GQLInterface {
pub name: String,
pub fields: Vec<GQLField>,
pub implements: Vec<String>,
pub description: Option<String>,
}Fields§
§name: String§fields: Vec<GQLField>§implements: Vec<String>§description: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for GQLInterface
impl Clone for GQLInterface
Source§fn clone(&self) -> GQLInterface
fn clone(&self) -> GQLInterface
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 GQLInterface
impl RefUnwindSafe for GQLInterface
impl Send for GQLInterface
impl Sync for GQLInterface
impl Unpin for GQLInterface
impl UnsafeUnpin for GQLInterface
impl UnwindSafe for GQLInterface
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