Enum olm_rs::errors::OlmAccountError[][src]

pub enum OlmAccountError {
    BadAccountKey,
    BadMessageKeyId,
    InvalidBase64,
    NotEnoughRandom,
    OutputBufferTooSmall,
    Unknown,
}

All errors that could be caused by an operation regarding an OlmAccount. Errors are named exactly like the ones in libolm.

Variants

Trait Implementations

impl Debug for OlmAccountError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for OlmAccountError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations