pub enum SessionCreationError {
OneTimeKeyNotSigned(OwnedUserId, OwnedDeviceId),
OneTimeKeyMissing(OwnedUserId, OwnedDeviceId),
OneTimeKeyUnknown(OwnedUserId, OwnedDeviceId),
InvalidSignature(OwnedUserId, OwnedDeviceId, SignatureError),
DeviceMissingCurveKey(OwnedUserId, OwnedDeviceId),
InvalidJson(Error),
InvalidCurveKey(KeyError),
InboundCreation(SessionCreationError),
}Available on crate feature
e2e-encryption only.Expand description
Error that occurs when a room key can’t be converted into a valid Megolm session.
Variants
OneTimeKeyNotSigned(OwnedUserId, OwnedDeviceId)
The requested one-time key isn’t a signed curve key.
OneTimeKeyMissing(OwnedUserId, OwnedDeviceId)
The signed one-time key is missing.
OneTimeKeyUnknown(OwnedUserId, OwnedDeviceId)
The one-time key algorithm is unsupported.
InvalidSignature(OwnedUserId, OwnedDeviceId, SignatureError)
Failed to verify the one-time key signatures.
DeviceMissingCurveKey(OwnedUserId, OwnedDeviceId)
The user’s device is missing a curve25519 key.
InvalidJson(Error)
Error deserializing the one-time key.
InvalidCurveKey(KeyError)
The given curve25519 key is not a valid key.
InboundCreation(SessionCreationError)
Error when creating an Olm Session from an incoming Olm message.
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 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
impl From<Error> for SessionCreationError
impl From<Error> for SessionCreationError
fn from(source: Error) -> SessionCreationError
fn from(source: Error) -> SessionCreationError
Converts to this type from the input type.
impl From<KeyError> for SessionCreationError
impl From<KeyError> for SessionCreationError
fn from(source: KeyError) -> SessionCreationError
fn from(source: KeyError) -> SessionCreationError
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<SessionCreationError> for SessionCreationError
impl From<SessionCreationError> for SessionCreationError
fn from(source: SessionCreationError) -> SessionCreationError
fn from(source: SessionCreationError) -> 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
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