pub struct ClipsError {
pub kind: ClipsErrorKind,
/* private fields */
}
Fields§
§kind: ClipsErrorKind
Trait Implementations§
Source§impl Debug for ClipsError
impl Debug for ClipsError
Source§impl Display for ClipsError
impl Display for ClipsError
Source§impl Error for ClipsError
impl Error for ClipsError
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()
Source§impl From<ClipsErrorKind> for ClipsError
impl From<ClipsErrorKind> for ClipsError
Source§fn from(kind: ClipsErrorKind) -> Self
fn from(kind: ClipsErrorKind) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ClipsError
impl !RefUnwindSafe for ClipsError
impl Send for ClipsError
impl Sync for ClipsError
impl Unpin for ClipsError
impl !UnwindSafe for ClipsError
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