pub struct GQLIntrospectionType {
pub kind: GQLIntrospectionKind,
pub name: Option<String>,
pub description: Option<String>,
pub fields: Vec<GQLIntrospectionField>,
pub interfaces: Vec<String>,
pub possible_types: Vec<String>,
pub enum_values: Vec<String>,
pub input_fields: Vec<String>,
pub of_type: Option<Box<GQLIntrospectionType>>,
}Fields§
§kind: GQLIntrospectionKind§name: Option<String>§description: Option<String>§fields: Vec<GQLIntrospectionField>§interfaces: Vec<String>§possible_types: Vec<String>§enum_values: Vec<String>§input_fields: Vec<String>§of_type: Option<Box<GQLIntrospectionType>>Trait Implementations§
Source§impl Clone for GQLIntrospectionType
impl Clone for GQLIntrospectionType
Source§fn clone(&self) -> GQLIntrospectionType
fn clone(&self) -> GQLIntrospectionType
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 GQLIntrospectionType
impl RefUnwindSafe for GQLIntrospectionType
impl Send for GQLIntrospectionType
impl Sync for GQLIntrospectionType
impl Unpin for GQLIntrospectionType
impl UnsafeUnpin for GQLIntrospectionType
impl UnwindSafe for GQLIntrospectionType
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