Enum matrix_sdk::encryption::OlmError
[−]pub enum OlmError {
EventError(EventError),
JsonError(Error),
Decryption(DecryptionError),
SessionCreation(SessionCreationError),
SessionExport(SessionExportError),
Store(CryptoStoreError),
SessionWedged(OwnedUserId, Curve25519PublicKey),
ReplayedMessage(OwnedUserId, Curve25519PublicKey),
MissingSession,
}Available on crate feature
e2e-encryption only.Expand description
Error representing a failure during a device to device cryptographic operation.
Variants
EventError(EventError)
The event that should have been decrypted is malformed.
JsonError(Error)
The received decrypted event couldn’t be deserialized.
Decryption(DecryptionError)
The event could not have been decrypted.
SessionCreation(SessionCreationError)
The received room key couldn’t be converted into a valid Megolm session.
SessionExport(SessionExportError)
The room key that should be exported can’t be converted into a
m.forwarded_room_key event.
Store(CryptoStoreError)
The storage layer returned an error.
SessionWedged(OwnedUserId, Curve25519PublicKey)
The session with a device has become corrupted.
ReplayedMessage(OwnedUserId, Curve25519PublicKey)
An Olm message got replayed while the Olm ratchet has already moved forward.
MissingSession
Encryption failed because the device does not have a valid Olm session with us.
Trait Implementations
impl Error for OlmError
impl Error for OlmError
fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
impl From<CryptoStoreError> for OlmError
impl From<CryptoStoreError> for OlmError
fn from(source: CryptoStoreError) -> OlmError
fn from(source: CryptoStoreError) -> OlmError
Converts to this type from the input type.
impl From<DecryptionError> for OlmError
impl From<DecryptionError> for OlmError
fn from(source: DecryptionError) -> OlmError
fn from(source: DecryptionError) -> OlmError
Converts to this type from the input type.
impl From<EventError> for OlmError
impl From<EventError> for OlmError
fn from(source: EventError) -> OlmError
fn from(source: EventError) -> OlmError
Converts to this type from the input type.
impl From<SessionCreationError> for OlmError
impl From<SessionCreationError> for OlmError
fn from(source: SessionCreationError) -> OlmError
fn from(source: SessionCreationError) -> OlmError
Converts to this type from the input type.
impl From<SessionExportError> for OlmError
impl From<SessionExportError> for OlmError
fn from(source: SessionExportError) -> OlmError
fn from(source: SessionExportError) -> OlmError
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for OlmError
impl Send for OlmError
impl Sync for OlmError
impl Unpin for OlmError
impl !UnwindSafe for OlmError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more