pub struct Failed;Expand description
Built-in ErrorKind implementation which represents opaque errors.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Failed
impl<'de> Deserialize<'de> for Failed
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for Failed
impl Ord for Failed
Source§impl PartialOrd for Failed
impl PartialOrd for Failed
impl Copy for Failed
impl Eq for Failed
impl StructuralPartialEq for Failed
Auto Trait Implementations§
impl Freeze for Failed
impl RefUnwindSafe for Failed
impl Send for Failed
impl Sync for Failed
impl Unpin for Failed
impl UnwindSafe for Failed
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<T> ErrorKindExt for Twhere
T: ErrorKind,
impl<T> ErrorKindExt for Twhere
T: ErrorKind,
Source§fn error(self) -> TrackableError<Self>
fn error(self) -> TrackableError<Self>
Makes a
TrackableError instance without cause. Read moreSource§fn cause<E>(self, cause: E) -> TrackableError<Self>
fn cause<E>(self, cause: E) -> TrackableError<Self>
Source§fn takes_over<F, K>(self, from: F) -> TrackableError<Self>
fn takes_over<F, K>(self, from: F) -> TrackableError<Self>
Takes over from other
TrackableError instance. Read more