pub struct PaceError(/* private fields */);Expand description
Errors that can result from pace.
Implementations§
source§impl PaceError
impl PaceError
sourcepub fn into_inner(self) -> PaceErrorKind
pub fn into_inner(self) -> PaceErrorKind
Expose the inner error kind.
This is useful for matching on the error kind.
Trait Implementations§
source§impl Error for PaceError
impl Error for PaceError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<PaceErrorKind> for PaceError
impl From<PaceErrorKind> for PaceError
source§fn from(source: PaceErrorKind) -> Self
fn from(source: PaceErrorKind) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for PaceError
impl Send for PaceError
impl Sync for PaceError
impl Unpin for PaceError
impl !UnwindSafe for PaceError
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