pub enum OlmAccountError {
BadAccountKey,
BadMessageKeyId,
InvalidBase64,
NotEnoughRandom,
OutputBufferTooSmall,
Unknown,
}
Expand description
All errors that could be caused by an operation regarding an
OlmAccount
.
Errors are named exactly like the ones in libolm.
Variants§
Trait Implementations§
Source§impl Debug for OlmAccountError
impl Debug for OlmAccountError
Source§impl Display for OlmAccountError
impl Display for OlmAccountError
Source§impl Error for OlmAccountError
impl Error for OlmAccountError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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 PartialEq for OlmAccountError
impl PartialEq for OlmAccountError
impl StructuralPartialEq for OlmAccountError
Auto Trait Implementations§
impl Freeze for OlmAccountError
impl RefUnwindSafe for OlmAccountError
impl Send for OlmAccountError
impl Sync for OlmAccountError
impl Unpin for OlmAccountError
impl UnwindSafe for OlmAccountError
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