[]Struct s3::error::S3Error

pub struct S3Error(pub ErrorKind, _);

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 of error_chain internals, containing:
    • a backtrace, generated when the error is created.
    • an error chain, used for the implementation of Error::cause().

Methods

impl S3Error

pub fn from_kind(kind: ErrorKind) -> S3Error

Constructs an error from a kind, and generates a backtrace.

pub fn with_chain<E, K>(error: E, kind: K) -> S3Error where
    E: Error + Send + 'static,
    K: Into<ErrorKind>, 

Constructs a chained error from another error and a kind, and generates a backtrace.

pub fn kind(&self) -> &ErrorKind

Returns the kind of the error.

pub fn iter(&self) -> ErrorChainIter

Iterates over the error chain.

pub fn backtrace(&self) -> Option<&Backtrace>

Returns the backtrace associated with this error.

Methods from Deref<Target = ErrorKind>

pub fn description(&self) -> &str

A string describing the error kind.

Trait Implementations

impl From<FromUtf8Error> for S3Error

impl From<Error> for S3Error

impl From<Error> for S3Error

impl From<VarError> for S3Error

impl From<Error> for S3Error

impl From<Error> for S3Error

impl From<InvalidHeaderName> for S3Error

impl From<InvalidHeaderValue> for S3Error

impl From<ErrorKind> for S3Error

impl<'a> From<&'a str> for S3Error

impl From<String> for S3Error

impl From<S3Error> for ErrorKind

impl Deref for S3Error

type Target = ErrorKind

The resulting type after dereferencing.

impl Debug for S3Error

impl Display for S3Error

impl Error for S3Error

fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]

The lower-level source of this error, if any. Read more

impl ChainedError for S3Error

type ErrorKind = ErrorKind

Associated kind type.

fn display(&'a self) -> Display<'a, Self>[src]

Returns an object which implements Display for printing the full context of this error. Read more

Auto Trait Implementations

impl !Sync for S3Error

impl Unpin for S3Error

impl Send for S3Error

impl !UnwindSafe for S3Error

impl !RefUnwindSafe for S3Error

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T