pub enum SimpleErrorType {
Temporary,
Permanent,
}Variants§
Trait Implementations§
Source§impl Clone for SimpleErrorType
impl Clone for SimpleErrorType
Source§fn clone(&self) -> SimpleErrorType
fn clone(&self) -> SimpleErrorType
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 SimpleErrorType
Source§impl Debug for SimpleErrorType
impl Debug for SimpleErrorType
Source§impl PartialEq for SimpleErrorType
impl PartialEq for SimpleErrorType
Source§fn eq(&self, other: &SimpleErrorType) -> bool
fn eq(&self, other: &SimpleErrorType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SimpleErrorType
Auto Trait Implementations§
impl Freeze for SimpleErrorType
impl RefUnwindSafe for SimpleErrorType
impl Send for SimpleErrorType
impl Sync for SimpleErrorType
impl Unpin for SimpleErrorType
impl UnsafeUnpin for SimpleErrorType
impl UnwindSafe for SimpleErrorType
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