pub struct BencodeConvertError(pub BencodeConvertErrorKind, _);Expand description
The Error type.
This tuple struct is made of two elements:
- an
ErrorKindwhich is used to determine the type of the error. - An internal
State, not meant for direct use outside oferror_chaininternals, containing:- a backtrace, generated when the error is created.
- an error chain, used for the implementation of
Error::cause().
Tuple Fields§
§0: BencodeConvertErrorKindThe kind of the error.
Implementations§
source§impl BencodeConvertError
impl BencodeConvertError
sourcepub fn from_kind(kind: BencodeConvertErrorKind) -> BencodeConvertError
pub fn from_kind(kind: BencodeConvertErrorKind) -> BencodeConvertError
Constructs an error from a kind, and generates a backtrace.
sourcepub fn with_chain<E, K>(error: E, kind: K) -> BencodeConvertErrorwhere
E: Error + Send + 'static,
K: Into<BencodeConvertErrorKind>,
pub fn with_chain<E, K>(error: E, kind: K) -> BencodeConvertErrorwhere E: Error + Send + 'static, K: Into<BencodeConvertErrorKind>,
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
) -> BencodeConvertErrorwhere
K: Into<BencodeConvertErrorKind>,
pub fn with_boxed_chain<K>( error: Box<dyn Error + Send>, kind: K ) -> BencodeConvertErrorwhere K: Into<BencodeConvertErrorKind>,
Construct a chained error from another boxed error and a kind, and generates a backtrace
sourcepub fn kind(&self) -> &BencodeConvertErrorKind
pub fn kind(&self) -> &BencodeConvertErrorKind
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) -> BencodeConvertErrorwhere
F: FnOnce() -> EK,
EK: Into<BencodeConvertErrorKind>,
pub fn chain_err<F, EK>(self, error: F) -> BencodeConvertErrorwhere F: FnOnce() -> EK, EK: Into<BencodeConvertErrorKind>,
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§
source§impl ChainedError for BencodeConvertError
impl ChainedError for BencodeConvertError
§type ErrorKind = BencodeConvertErrorKind
type ErrorKind = BencodeConvertErrorKind
Associated kind type.
source§fn from_kind(kind: Self::ErrorKind) -> Self
fn from_kind(kind: Self::ErrorKind) -> Self
Constructs an error from a kind, and generates a backtrace.
source§fn with_chain<E, K>(error: E, kind: K) -> Selfwhere
E: Error + Send + 'static,
K: Into<Self::ErrorKind>,
fn with_chain<E, K>(error: E, kind: K) -> Selfwhere E: Error + Send + 'static, K: Into<Self::ErrorKind>,
Constructs a chained error from another error and a kind, and generates a backtrace.
source§fn chain_err<F, EK>(self, error: F) -> Selfwhere
F: FnOnce() -> EK,
EK: Into<BencodeConvertErrorKind>,
fn chain_err<F, EK>(self, error: F) -> Selfwhere F: FnOnce() -> EK, EK: Into<BencodeConvertErrorKind>,
Extends the error chain with a new entry.
source§fn 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 moresource§impl Debug for BencodeConvertError
impl Debug for BencodeConvertError
source§impl Display for BencodeConvertError
impl Display for BencodeConvertError
source§impl Error for BencodeConvertError
impl Error for BencodeConvertError
source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
source§impl<'a> From<&'a str> for BencodeConvertError
impl<'a> From<&'a str> for BencodeConvertError
source§impl From<BencodeConvertError> for BencodeConvertErrorKind
impl From<BencodeConvertError> for BencodeConvertErrorKind
source§fn from(e: BencodeConvertError) -> Self
fn from(e: BencodeConvertError) -> Self
Converts to this type from the input type.
source§impl From<BencodeConvertErrorKind> for BencodeConvertError
impl From<BencodeConvertErrorKind> for BencodeConvertError
source§fn from(e: BencodeConvertErrorKind) -> Self
fn from(e: BencodeConvertErrorKind) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for BencodeConvertError
impl Send for BencodeConvertError
impl !Sync for BencodeConvertError
impl Unpin for BencodeConvertError
impl !UnwindSafe for BencodeConvertError
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