Struct uvm_install2::UvmError
source · pub struct UvmError(pub UvmErrorKind, _);
Expand description
The Error type.
This tuple struct is made of two elements:
- an
ErrorKind
which is used to determine the type of the error. - An internal
State
, not meant for direct use outside oferror_chain
internals, containing:- a backtrace, generated when the error is created.
- an error chain, used for the implementation of
Error::cause()
.
Tuple Fields
0: UvmErrorKind
The kind of the error.
Implementations
sourceimpl UvmError
impl UvmError
sourcepub fn from_kind(kind: UvmErrorKind) -> UvmError
pub fn from_kind(kind: UvmErrorKind) -> UvmError
Constructs an error from a kind, and generates a backtrace.
sourcepub fn with_chain<E, K>(error: E, kind: K) -> UvmErrorwhere
E: 'static + Error + Send,
K: Into<UvmErrorKind>,
pub fn with_chain<E, K>(error: E, kind: K) -> UvmErrorwhere
E: 'static + Error + Send,
K: Into<UvmErrorKind>,
Constructs a chained error from another error and a kind, and generates a backtrace.
sourcepub fn with_boxed_chain<K>(
error: Box<dyn Error + Send + 'static, Global>,
kind: K
) -> UvmErrorwhere
K: Into<UvmErrorKind>,
pub fn with_boxed_chain<K>(
error: Box<dyn Error + Send + 'static, Global>,
kind: K
) -> UvmErrorwhere
K: Into<UvmErrorKind>,
Construct a chained error from another boxed error and a kind, and generates a backtrace
sourcepub fn kind(&self) -> &UvmErrorKind
pub fn kind(&self) -> &UvmErrorKind
Returns the kind of the error.
sourcepub fn backtrace(&self) -> Option<&Backtrace>
pub fn backtrace(&self) -> Option<&Backtrace>
Returns the backtrace associated with this error.
sourcepub fn chain_err<F, EK>(self, error: F) -> UvmErrorwhere
F: FnOnce() -> EK,
EK: Into<UvmErrorKind>,
pub fn chain_err<F, EK>(self, error: F) -> UvmErrorwhere
F: FnOnce() -> EK,
EK: Into<UvmErrorKind>,
Extends the error chain with a new entry.
sourcepub fn description(&self) -> &str
pub fn description(&self) -> &str
A short description of the error.
This method is identical to Error::description()
Trait Implementations
sourceimpl ChainedError for UvmError
impl ChainedError for UvmError
type ErrorKind = UvmErrorKind
type ErrorKind = UvmErrorKind
Associated kind type.
sourcefn from_kind(kind: <UvmError as ChainedError>::ErrorKind) -> UvmError
fn from_kind(kind: <UvmError as ChainedError>::ErrorKind) -> UvmError
Constructs an error from a kind, and generates a backtrace.
sourcefn with_chain<E, K>(error: E, kind: K) -> UvmErrorwhere
E: 'static + Error + Send,
K: Into<<UvmError as ChainedError>::ErrorKind>,
fn with_chain<E, K>(error: E, kind: K) -> UvmErrorwhere
E: 'static + Error + Send,
K: Into<<UvmError as ChainedError>::ErrorKind>,
Constructs a chained error from another error and a kind, and generates a backtrace.
sourcefn kind(&self) -> &<UvmError as ChainedError>::ErrorKind
fn kind(&self) -> &<UvmError as ChainedError>::ErrorKind
Returns the kind of the error.
sourcefn chain_err<F, EK>(self, error: F) -> UvmErrorwhere
F: FnOnce() -> EK,
EK: Into<UvmErrorKind>,
fn chain_err<F, EK>(self, error: F) -> UvmErrorwhere
F: FnOnce() -> EK,
EK: Into<UvmErrorKind>,
Extends the error chain with a new entry.
sourcefn display_chain<'a>(&'a self) -> DisplayChain<'a, Self>
fn display_chain<'a>(&'a self) -> DisplayChain<'a, Self>
Returns an object which implements
Display
for printing the full
context of this error. Read moresourceimpl Error for UvmError
impl Error for UvmError
sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
sourceimpl From<UvmError> for UvmErrorKind
impl From<UvmError> for UvmErrorKind
sourcefn from(e: UvmError) -> UvmErrorKind
fn from(e: UvmError) -> UvmErrorKind
Converts to this type from the input type.
sourceimpl From<UvmErrorKind> for UvmError
impl From<UvmErrorKind> for UvmError
sourcefn from(e: UvmErrorKind) -> UvmError
fn from(e: UvmErrorKind) -> UvmError
Converts to this type from the input type.
sourceimpl From<UvmHubError> for UvmError
impl From<UvmHubError> for UvmError
sourcefn from(e: UvmHubError) -> UvmError
fn from(e: UvmHubError) -> UvmError
Converts to this type from the input type.
sourceimpl From<VersionError> for UvmError
impl From<VersionError> for UvmError
sourcefn from(e: VersionError) -> UvmError
fn from(e: VersionError) -> UvmError
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for UvmError
impl Send for UvmError
impl !Sync for UvmError
impl Unpin for UvmError
impl !UnwindSafe for UvmError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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