pub struct WoojinError {
pub details: String,
pub kind: WoojinErrorKind,
}Fields§
§details: String§kind: WoojinErrorKindImplementations§
Source§impl WoojinError
impl WoojinError
pub fn new(msg: impl ToString, kind: WoojinErrorKind) -> WoojinError
pub fn exit(&self) -> !
Trait Implementations§
Source§impl Debug for WoojinError
impl Debug for WoojinError
Source§impl Display for WoojinError
impl Display for WoojinError
Source§impl Error for WoojinError
impl Error for WoojinError
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 WoojinError
impl RefUnwindSafe for WoojinError
impl Send for WoojinError
impl Sync for WoojinError
impl Unpin for WoojinError
impl UnwindSafe for WoojinError
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