pub enum GraphQLType {
Enum,
InputObject,
Interface,
Object,
Scalar,
Union,
}Expand description
Core GraphQL types used for definitions and extensions.
Variants§
Enum
Enum type.
InputObject
InputObject type.
Interface
Interface type.
Object
Object type.
Scalar
Scalar type.
Union
Union type.
Trait Implementations§
Source§impl Clone for GraphQLType
impl Clone for GraphQLType
Source§fn clone(&self) -> GraphQLType
fn clone(&self) -> GraphQLType
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 GraphQLType
impl Debug for GraphQLType
Source§impl PartialEq for GraphQLType
impl PartialEq for GraphQLType
impl Copy for GraphQLType
impl Eq for GraphQLType
impl StructuralPartialEq for GraphQLType
Auto Trait Implementations§
impl Freeze for GraphQLType
impl RefUnwindSafe for GraphQLType
impl Send for GraphQLType
impl Sync for GraphQLType
impl Unpin for GraphQLType
impl UnwindSafe for GraphQLType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.