Enum messagebird_async::errors::MessageBirdError[][src]

pub enum MessageBirdError {
    FormatError {
        chunk: String,
    },
    TypeError {
        msg: String,
    },
    ServiceError {
        code: u16,
        description: String,
        parameter: Option<String>,
    },
    ParseError,
    RequestError,
    AccessKeyError {
        msg: String,
    },
}

Variants

Fields of FormatError

Fields of TypeError

Fields of ServiceError

Fields of AccessKeyError

Trait Implementations

impl Debug for MessageBirdError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations