Enum ipfs_api::response::ErrorKind
[−]
pub enum ErrorKind {
Msg(String),
Http(Error),
Parse(Error),
ParseUtf8(FromUtf8Error),
Url(UriError),
Io(Error),
EncodeUrl(Error),
Api(ApiError),
StreamError(String),
Uncategorized(String),
// some variants omitted
}The kind of an error.
Variants
Msg(String)A convenient variant for String.
Http(Error)Parse(Error)ParseUtf8(FromUtf8Error)Url(UriError)Io(Error)EncodeUrl(Error)Api(ApiError)An error returned by the Ipfs api.
StreamError(String)A stream error indicated in the Trailer header.
Uncategorized(String)
Methods
impl ErrorKind
fn description(&self) -> &str
A string describing the error kind.