Enum matrix_sdk_qrcode::EncodingError
source · pub enum EncodingError {
Qr(QrError),
FlowId(TryFromIntError),
}
Expand description
Error type describing errors that happen while QR data is being encoded.
Variants§
Qr(QrError)
Error generating a QR code from the data, likely because the data doesn’t fit into a QR code.
FlowId(TryFromIntError)
Error encoding the given flow id, the flow id is too large.
Trait Implementations§
source§impl Debug for EncodingError
impl Debug for EncodingError
source§impl Display for EncodingError
impl Display for EncodingError
source§impl Error for EncodingError
impl Error for EncodingError
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<QrError> for EncodingError
impl From<QrError> for EncodingError
source§impl From<TryFromIntError> for EncodingError
impl From<TryFromIntError> for EncodingError
source§fn from(source: TryFromIntError) -> Self
fn from(source: TryFromIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EncodingError
impl RefUnwindSafe for EncodingError
impl Send for EncodingError
impl Sync for EncodingError
impl Unpin for EncodingError
impl UnwindSafe for EncodingError
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