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