Enum grpc_rust::error::Error [] [src]

pub enum Error {
    CryptoKeyError(String),
    FileNameError,
    InvalidTomlError(String),
    IO(Error),
    JsonDecode(DecoderError),
    JsonEncode(EncoderError),
    StrFromUtf8Error(Utf8Error),
    StringFromUtf8Error(FromUtf8Error),
    WireDecode(String),
}

Variants

Occurs when making lower level IO calls.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

A short description of the error. Read more

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

impl From<Error> for Error
[src]

Performs the conversion.

impl From<DecoderError> for Error
[src]

Performs the conversion.

impl From<EncoderError> for Error
[src]

Performs the conversion.

impl From<Utf8Error> for Error
[src]

Performs the conversion.

impl From<FromUtf8Error> for Error
[src]

Performs the conversion.