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),
}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
sourceimpl Debug for SessionCreationError
impl Debug for SessionCreationError
sourceimpl Display for SessionCreationError
impl Display for SessionCreationError
sourceimpl Error for SessionCreationError
impl Error for SessionCreationError
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<Error> for SessionCreationError
impl From<Error> for SessionCreationError
sourceimpl From<KeyError> for SessionCreationError
impl From<KeyError> for SessionCreationError
sourceimpl From<SessionCreationError> for OlmError
impl From<SessionCreationError> for OlmError
sourcefn from(source: SessionCreationError) -> Self
fn from(source: SessionCreationError) -> Self
Converts to this type from the input type.
sourceimpl From<SessionCreationError> for SessionCreationError
impl From<SessionCreationError> for SessionCreationError
sourcefn from(source: SessionCreationError) -> Self
fn from(source: SessionCreationError) -> Self
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