Enum matrix_sdk_crypto::olm::SessionExportError
source · [−]pub enum SessionExportError {
Algorithm(EventEncryptionAlgorithm),
MissingEd25519Key,
}Expand description
An error type for the export of inbound group sessions.
Exported inbound group sessions will be either uploaded as backups, sent as
m.forwarded_room_keys, or exported into a file backup.
Variants
Algorithm(EventEncryptionAlgorithm)
The provided algorithm is not supported.
MissingEd25519Key
The session export is missing a claimed Ed25519 sender key.
Trait Implementations
sourceimpl Debug for SessionExportError
impl Debug for SessionExportError
sourceimpl Display for SessionExportError
impl Display for SessionExportError
sourceimpl Error for SessionExportError
impl Error for SessionExportError
1.30.0 · sourcefn 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()
sourceimpl From<SessionExportError> for OlmError
impl From<SessionExportError> for OlmError
sourcefn from(source: SessionExportError) -> Self
fn from(source: SessionExportError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for SessionExportError
impl Send for SessionExportError
impl Sync for SessionExportError
impl Unpin for SessionExportError
impl UnwindSafe for SessionExportError
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