Struct sda_client::SdaClientError
[−]
pub struct SdaClientError(pub SdaClientErrorKind, _);
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()
.
Methods
impl SdaClientError
fn from_kind(kind: SdaClientErrorKind) -> SdaClientError
Constructs an error from a kind, and generates a backtrace.
fn with_chain<E, K>(error: E, kind: K) -> SdaClientError where E: Error + Send + 'static, K: Into<SdaClientErrorKind>
Constructs a chained error from another error and a kind, and generates a backtrace.
fn kind(&self) -> &SdaClientErrorKind
Returns the kind of the error.
fn iter(&self) -> ErrorChainIter
Iterates over the error chain.
fn backtrace(&self) -> Option<&Backtrace>
Returns the backtrace associated with this error.
Trait Implementations
impl Debug for SdaClientError
impl ChainedError for SdaClientError
type ErrorKind = SdaClientErrorKind
Associated kind type.
fn new(kind: SdaClientErrorKind, state: State) -> SdaClientError
fn from_kind(kind: Self::ErrorKind) -> Self
Constructs an error from a kind, and generates a backtrace.
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.
fn kind(&self) -> &Self::ErrorKind
Returns the kind of the error.
fn iter(&self) -> ErrorChainIter
Iterates over the error chain.
fn backtrace(&self) -> Option<&Backtrace>
Returns the backtrace associated with this error.
fn display(&'a self) -> Display<'a, Self>
Returns an object which implements Display
for printing the full context of this error. Read more
impl Error for SdaClientError
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl Display for SdaClientError
impl From<SdaError> for SdaClientError
fn from(e: SdaError) -> Self
Performs the conversion.
impl From<Error> for SdaClientError
impl From<Error> for SdaClientError
fn from(e: Error) -> Self
Performs the conversion.
impl From<ParseIntError> for SdaClientError
fn from(e: ParseIntError) -> Self
Performs the conversion.
impl From<SystemTimeError> for SdaClientError
fn from(e: SystemTimeError) -> Self
Performs the conversion.
impl From<SdaClientErrorKind> for SdaClientError
fn from(e: SdaClientErrorKind) -> Self
Performs the conversion.