Struct ethcore::error::QueueError
source · [−]pub struct QueueError(pub QueueErrorKind, _);
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: QueueErrorKind
The kind of the error.
Implementations
sourceimpl QueueError
impl QueueError
sourcepub fn from_kind(kind: QueueErrorKind) -> QueueError
pub fn from_kind(kind: QueueErrorKind) -> QueueError
Constructs an error from a kind, and generates a backtrace.
sourcepub fn with_chain<E, K>(error: E, kind: K) -> QueueError where
E: Error + Send + 'static,
K: Into<QueueErrorKind>,
pub fn with_chain<E, K>(error: E, kind: K) -> QueueError where
E: Error + Send + 'static,
K: Into<QueueErrorKind>,
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>, kind: K) -> QueueError where
K: Into<QueueErrorKind>,
pub fn with_boxed_chain<K>(error: Box<dyn Error + Send>, kind: K) -> QueueError where
K: Into<QueueErrorKind>,
Construct a chained error from another boxed error and a kind, and generates a backtrace
sourcepub fn kind(&self) -> &QueueErrorKind
pub fn kind(&self) -> &QueueErrorKind
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) -> QueueError where
F: FnOnce() -> EK,
EK: Into<QueueErrorKind>,
pub fn chain_err<F, EK>(self, error: F) -> QueueError where
F: FnOnce() -> EK,
EK: Into<QueueErrorKind>,
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 QueueError
impl ChainedError for QueueError
type ErrorKind = QueueErrorKind
type ErrorKind = QueueErrorKind
Associated kind type.
sourcefn from_kind(kind: Self::ErrorKind) -> Self
fn from_kind(kind: Self::ErrorKind) -> Self
Constructs an error from a kind, and generates a backtrace.
sourcefn with_chain<E, K>(error: E, kind: K) -> Self where
E: Error + Send + 'static,
K: Into<Self::ErrorKind>,
fn with_chain<E, K>(error: E, kind: K) -> Self where
E: Error + Send + 'static,
K: Into<Self::ErrorKind>,
Constructs a chained error from another error and a kind, and generates a backtrace.
sourcefn chain_err<F, EK>(self, error: F) -> Self where
F: FnOnce() -> EK,
EK: Into<QueueErrorKind>,
fn chain_err<F, EK>(self, error: F) -> Self where
F: FnOnce() -> EK,
EK: Into<QueueErrorKind>,
Extends the error chain with a new entry.
sourcefn display_chain(&'a self) -> DisplayChain<'a, Self>
fn display_chain(&'a self) -> DisplayChain<'a, Self>
Returns an object which implements Display
for printing the full
context of this error. Read more
sourceimpl Debug for QueueError
impl Debug for QueueError
sourceimpl Display for QueueError
impl Display for QueueError
sourceimpl Error for QueueError
impl Error for QueueError
sourcefn description(&self) -> &str
fn description(&self) -> &str
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<'a> From<&'a str> for QueueError
impl<'a> From<&'a str> for QueueError
sourceimpl From<IoError> for QueueError
impl From<IoError> for QueueError
Io channel error
sourceimpl From<QueueError> for QueueErrorKind
impl From<QueueError> for QueueErrorKind
sourcefn from(e: QueueError) -> Self
fn from(e: QueueError) -> Self
Performs the conversion.
sourceimpl From<QueueError> for Error
impl From<QueueError> for Error
Io channel queue error
sourcefn from(e: QueueError) -> Self
fn from(e: QueueError) -> Self
Performs the conversion.
sourceimpl From<QueueErrorKind> for QueueError
impl From<QueueErrorKind> for QueueError
sourcefn from(e: QueueErrorKind) -> Self
fn from(e: QueueErrorKind) -> Self
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for QueueError
impl Send for QueueError
impl !Sync for QueueError
impl Unpin for QueueError
impl !UnwindSafe for QueueError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more