pub enum MegolmSessionCreationError {
Algorithm(EventEncryptionAlgorithm),
Decode(SessionKeyDecodeError),
}
Available on crate feature
e2e-encryption
only.Expand description
An error type for the creation of group sessions.
Variants§
Algorithm(EventEncryptionAlgorithm)
The provided algorithm is not supported.
Decode(SessionKeyDecodeError)
The room key key couldn’t be decoded.
Trait Implementations§
§impl Debug for SessionCreationError
impl Debug for SessionCreationError
§impl Display for SessionCreationError
impl Display for SessionCreationError
§impl Error for SessionCreationError
impl Error for SessionCreationError
§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 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
§impl From<SessionCreationError> for CryptoStoreError
impl From<SessionCreationError> for CryptoStoreError
§fn from(source: SessionCreationError) -> CryptoStoreError
fn from(source: SessionCreationError) -> CryptoStoreError
Converts to this type from the input type.
§impl From<SessionKeyDecodeError> for SessionCreationError
impl From<SessionKeyDecodeError> for SessionCreationError
§fn from(source: SessionKeyDecodeError) -> SessionCreationError
fn from(source: SessionKeyDecodeError) -> SessionCreationError
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for SessionCreationError
impl Send for SessionCreationError
impl Sync for SessionCreationError
impl Unpin for SessionCreationError
impl !UnwindSafe for SessionCreationError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more