pub enum GraphqlTypeKind {
Scalar,
Object,
Interface,
Union,
Enum,
InputObject,
List,
NonNull,
}Expand description
GraphQL type kind labels.
Variants§
Scalar
A stable label variant.
Object
A stable label variant.
Interface
A stable label variant.
Union
A stable label variant.
Enum
A stable label variant.
InputObject
A stable label variant.
List
A stable label variant.
NonNull
A stable label variant.
Implementations§
Trait Implementations§
Source§impl Clone for GraphqlTypeKind
impl Clone for GraphqlTypeKind
Source§fn clone(&self) -> GraphqlTypeKind
fn clone(&self) -> GraphqlTypeKind
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 moreSource§impl Debug for GraphqlTypeKind
impl Debug for GraphqlTypeKind
Source§impl Default for GraphqlTypeKind
impl Default for GraphqlTypeKind
Source§impl Display for GraphqlTypeKind
impl Display for GraphqlTypeKind
Source§impl FromStr for GraphqlTypeKind
impl FromStr for GraphqlTypeKind
Source§impl Hash for GraphqlTypeKind
impl Hash for GraphqlTypeKind
Source§impl Ord for GraphqlTypeKind
impl Ord for GraphqlTypeKind
Source§fn cmp(&self, other: &GraphqlTypeKind) -> Ordering
fn cmp(&self, other: &GraphqlTypeKind) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for GraphqlTypeKind
impl PartialEq for GraphqlTypeKind
Source§impl PartialOrd for GraphqlTypeKind
impl PartialOrd for GraphqlTypeKind
impl Copy for GraphqlTypeKind
impl Eq for GraphqlTypeKind
impl StructuralPartialEq for GraphqlTypeKind
Auto Trait Implementations§
impl Freeze for GraphqlTypeKind
impl RefUnwindSafe for GraphqlTypeKind
impl Send for GraphqlTypeKind
impl Sync for GraphqlTypeKind
impl Unpin for GraphqlTypeKind
impl UnsafeUnpin for GraphqlTypeKind
impl UnwindSafe for GraphqlTypeKind
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