Enum ipfs_api::response::Error[][src]

pub enum Error {
    Client(Error),
    Http(Error),
    Parse(Error),
    ParseUtf8(FromUtf8Error),
    Url(InvalidUri),
    Io(Error),
    EncodeUrl(Error),
    Api(ApiError),
    StreamError(String),
    UnrecognizedTrailerHeader(String),
    Uncategorized(String),
}

Variants

An error returned by the Ipfs api.

A stream error indicated in the Trailer header.

API returned a trailer header with unrecognized value.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter. Read more

impl From<Error> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<FromUtf8Error> for Error
[src]

Performs the conversion.

impl From<InvalidUri> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Error

impl Sync for Error