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