pub enum ErrorFilter {
    OutOfMemory,
    Validation,
    Internal,
}Expand description
Kinds of Errors a Device::push_error_scope() may be configured to catch.
Variants§
OutOfMemory
Catch only out-of-memory errors.
Validation
Catch only validation errors.
Internal
Catch only internal errors.
Trait Implementations§
Source§impl Clone for ErrorFilter
 
impl Clone for ErrorFilter
Source§fn clone(&self) -> ErrorFilter
 
fn clone(&self) -> ErrorFilter
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 ErrorFilter
 
impl Debug for ErrorFilter
Source§impl PartialEq for ErrorFilter
 
impl PartialEq for ErrorFilter
Source§impl PartialOrd for ErrorFilter
 
impl PartialOrd for ErrorFilter
impl Copy for ErrorFilter
impl Eq for ErrorFilter
impl StructuralPartialEq for ErrorFilter
Auto Trait Implementations§
impl Freeze for ErrorFilter
impl RefUnwindSafe for ErrorFilter
impl Send for ErrorFilter
impl Sync for ErrorFilter
impl Unpin for ErrorFilter
impl UnwindSafe for ErrorFilter
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§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.