pub struct BencodeParseError(pub BencodeParseErrorKind, _);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: BencodeParseErrorKindThe kind of the error.
Implementations§
source§impl BencodeParseError
impl BencodeParseError
sourcepub fn from_kind(kind: BencodeParseErrorKind) -> BencodeParseError
pub fn from_kind(kind: BencodeParseErrorKind) -> BencodeParseError
Constructs an error from a kind, and generates a backtrace.
sourcepub fn with_chain<E, K>(error: E, kind: K) -> BencodeParseErrorwhere
E: Error + Send + 'static,
K: Into<BencodeParseErrorKind>,
pub fn with_chain<E, K>(error: E, kind: K) -> BencodeParseErrorwhere E: Error + Send + 'static, K: Into<BencodeParseErrorKind>,
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
) -> BencodeParseErrorwhere
K: Into<BencodeParseErrorKind>,
pub fn with_boxed_chain<K>( error: Box<dyn Error + Send>, kind: K ) -> BencodeParseErrorwhere K: Into<BencodeParseErrorKind>,
Construct a chained error from another boxed error and a kind, and generates a backtrace
sourcepub fn kind(&self) -> &BencodeParseErrorKind
pub fn kind(&self) -> &BencodeParseErrorKind
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) -> BencodeParseErrorwhere
F: FnOnce() -> EK,
EK: Into<BencodeParseErrorKind>,
pub fn chain_err<F, EK>(self, error: F) -> BencodeParseErrorwhere F: FnOnce() -> EK, EK: Into<BencodeParseErrorKind>,
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 BencodeParseError
impl ChainedError for BencodeParseError
§type ErrorKind = BencodeParseErrorKind
type ErrorKind = BencodeParseErrorKind
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<BencodeParseErrorKind>,
fn chain_err<F, EK>(self, error: F) -> Selfwhere F: FnOnce() -> EK, EK: Into<BencodeParseErrorKind>,
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 BencodeParseError
impl Debug for BencodeParseError
source§impl Display for BencodeParseError
impl Display for BencodeParseError
source§impl Error for BencodeParseError
impl Error for BencodeParseError
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 BencodeParseError
impl<'a> From<&'a str> for BencodeParseError
source§impl From<BencodeParseError> for BencodeParseErrorKind
impl From<BencodeParseError> for BencodeParseErrorKind
source§fn from(e: BencodeParseError) -> Self
fn from(e: BencodeParseError) -> Self
Converts to this type from the input type.
source§impl From<BencodeParseErrorKind> for BencodeParseError
impl From<BencodeParseErrorKind> for BencodeParseError
source§fn from(e: BencodeParseErrorKind) -> Self
fn from(e: BencodeParseErrorKind) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for BencodeParseError
impl Send for BencodeParseError
impl !Sync for BencodeParseError
impl Unpin for BencodeParseError
impl !UnwindSafe for BencodeParseError
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