Enum olm_rs::errors::OlmGroupSessionError[][src]

pub enum OlmGroupSessionError {
    BadAccountKey,
    BadMessageFormat,
    BadMessageMac,
    BadMessageVersion,
    BadSessionKey,
    InvalidBase64,
    NotEnoughRandom,
    OutputBufferTooSmall,
    UnknownMessageIndex,
    Unknown,
}

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

Variants

Trait Implementations

impl Debug for OlmGroupSessionError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for OlmGroupSessionError
[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