pub enum DecodeBase32Error {
InvalidChar(char),
}Variants§
Trait Implementations§
Source§impl Clone for DecodeBase32Error
impl Clone for DecodeBase32Error
Source§fn clone(&self) -> DecodeBase32Error
fn clone(&self) -> DecodeBase32Error
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DecodeBase32Error
impl Debug for DecodeBase32Error
Source§impl Display for DecodeBase32Error
impl Display for DecodeBase32Error
Source§impl Error for DecodeBase32Error
impl Error for DecodeBase32Error
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()
Auto Trait Implementations§
impl Freeze for DecodeBase32Error
impl RefUnwindSafe for DecodeBase32Error
impl Send for DecodeBase32Error
impl Sync for DecodeBase32Error
impl Unpin for DecodeBase32Error
impl UnsafeUnpin for DecodeBase32Error
impl UnwindSafe for DecodeBase32Error
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