pub struct RecursiveError3 {
pub err1: Error,
pub err2: Error,
pub err3: Error,
}
Fields§
§err1: Error
First error raised.
err2: Error
Second error raised.
err3: Error
Third error raised.
Trait Implementations§
Source§impl Debug for RecursiveError3
impl Debug for RecursiveError3
Source§impl Display for RecursiveError3
impl Display for RecursiveError3
Source§impl Error for RecursiveError3
impl Error for RecursiveError3
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for RecursiveError3
impl !RefUnwindSafe for RecursiveError3
impl Send for RecursiveError3
impl Sync for RecursiveError3
impl Unpin for RecursiveError3
impl !UnwindSafe for RecursiveError3
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