pub enum GraphqlType {
Object,
Interface,
Input,
Enum,
Scalar,
Union,
}Expand description
The schema role of a GraphQL named type.
Variants§
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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for GraphqlType
Source§impl Debug for GraphqlType
impl Debug for GraphqlType
impl Eq for GraphqlType
Source§impl PartialEq for GraphqlType
impl PartialEq 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 UnsafeUnpin 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