Enum async_graphql::ValidationMode 
source · pub enum ValidationMode {
    Strict,
    Fast,
}Expand description
Validation mode
Variants
Strict
Execute all validation rules.
Fast
The executor itself also has error handling, so it can improve performance, but it can lose some error messages.
Trait Implementations
sourceimpl Clone for ValidationMode
 
impl Clone for ValidationMode
sourcefn clone(&self) -> ValidationMode
 
fn clone(&self) -> ValidationMode
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresourceimpl Debug for ValidationMode
 
impl Debug for ValidationMode
impl Copy for ValidationMode
Auto Trait Implementations
impl RefUnwindSafe for ValidationMode
impl Send for ValidationMode
impl Sync for ValidationMode
impl Unpin for ValidationMode
impl UnwindSafe for ValidationMode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more