Struct cadence::MetricError
source · [−]pub struct MetricError { /* private fields */ }
Expand description
Error generated by this library potentially wrapping another
type of error (exposed via the Error
trait).
Implementations
sourceimpl MetricError
impl MetricError
Trait Implementations
sourceimpl Debug for MetricError
impl Debug for MetricError
sourceimpl Display for MetricError
impl Display for MetricError
sourceimpl Error for MetricError
impl Error for MetricError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<(ErrorKind, &'static str)> for MetricError
impl From<(ErrorKind, &'static str)> for MetricError
sourcefn from((kind, desc): (ErrorKind, &'static str)) -> MetricError
fn from((kind, desc): (ErrorKind, &'static str)) -> MetricError
Converts to this type from the input type.
sourceimpl From<Error> for MetricError
impl From<Error> for MetricError
sourcefn from(err: Error) -> MetricError
fn from(err: Error) -> MetricError
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for MetricError
impl Send for MetricError
impl Sync for MetricError
impl Unpin for MetricError
impl !UnwindSafe for MetricError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more