Enum matrix_sdk::encryption::RoomKeyImportError
source · pub enum RoomKeyImportError {
SerdeJson(Error),
StoreClosed,
Io(Error),
CryptoStore(CryptoStoreError),
Export(KeyExportError),
}
Expand description
Error for the room key importing functionality.
Variants§
SerdeJson(Error)
An error de/serializing type for the StateStore
StoreClosed
The crypto store isn’t yet open. Logging in is required to open the crypto store.
Io(Error)
An IO error happened.
CryptoStore(CryptoStoreError)
An error occurred in the crypto store.
Export(KeyExportError)
An error occurred while importing the key export.
Trait Implementations§
source§impl Debug for RoomKeyImportError
impl Debug for RoomKeyImportError
source§impl Display for RoomKeyImportError
impl Display for RoomKeyImportError
source§impl Error for RoomKeyImportError
impl Error for RoomKeyImportError
source§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()
source§impl From<CryptoStoreError> for RoomKeyImportError
impl From<CryptoStoreError> for RoomKeyImportError
source§fn from(source: CryptoStoreError) -> Self
fn from(source: CryptoStoreError) -> Self
Converts to this type from the input type.
source§impl From<Error> for RoomKeyImportError
impl From<Error> for RoomKeyImportError
source§impl From<Error> for RoomKeyImportError
impl From<Error> for RoomKeyImportError
source§impl From<KeyExportError> for RoomKeyImportError
impl From<KeyExportError> for RoomKeyImportError
source§fn from(source: KeyExportError) -> Self
fn from(source: KeyExportError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RoomKeyImportError
impl !RefUnwindSafe for RoomKeyImportError
impl Send for RoomKeyImportError
impl Sync for RoomKeyImportError
impl Unpin for RoomKeyImportError
impl !UnwindSafe for RoomKeyImportError
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
source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more