pub enum IntrospectionFormat {
All,
WithoutDescriptions,
}
Expand description
The desired GraphQL introspection format for the canonical query (https://github.com/graphql/graphql-js/blob/90bd6ff72625173dd39a1f82cfad9336cfad8f65/src/utilities/getIntrospectionQuery.ts#L62)
Variants§
All
The canonical GraphQL introspection query.
WithoutDescriptions
The canonical GraphQL introspection query without descriptions.
Trait Implementations§
Source§impl Clone for IntrospectionFormat
impl Clone for IntrospectionFormat
Source§fn clone(&self) -> IntrospectionFormat
fn clone(&self) -> IntrospectionFormat
Returns a copy 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 IntrospectionFormat
impl Debug for IntrospectionFormat
Source§impl Default for IntrospectionFormat
impl Default for IntrospectionFormat
Source§fn default() -> IntrospectionFormat
fn default() -> IntrospectionFormat
Returns the “default value” for a type. Read more
impl Copy for IntrospectionFormat
Auto Trait Implementations§
impl Freeze for IntrospectionFormat
impl RefUnwindSafe for IntrospectionFormat
impl Send for IntrospectionFormat
impl Sync for IntrospectionFormat
impl Unpin for IntrospectionFormat
impl UnwindSafe for IntrospectionFormat
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