pub struct FerrisError {
pub kind: ErrorKind,
pub message: String,
}Fields§
§kind: ErrorKind§message: StringImplementations§
Trait Implementations§
Source§impl Clone for FerrisError
impl Clone for FerrisError
Source§fn clone(&self) -> FerrisError
fn clone(&self) -> FerrisError
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 moreSource§impl Debug for FerrisError
impl Debug for FerrisError
Source§impl Display for FerrisError
impl Display for FerrisError
Source§impl Error for FerrisError
impl Error for FerrisError
1.30.0 · 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 FerrisError
impl RefUnwindSafe for FerrisError
impl Send for FerrisError
impl Sync for FerrisError
impl Unpin for FerrisError
impl UnsafeUnpin for FerrisError
impl UnwindSafe for FerrisError
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