pub enum B58DecodeError {
InvalidBase58,
WrongLength {
expected: usize,
got: usize,
},
}Variants§
Trait Implementations§
Source§impl Clone for B58DecodeError
impl Clone for B58DecodeError
Source§fn clone(&self) -> B58DecodeError
fn clone(&self) -> B58DecodeError
Returns a duplicate of the value. Read more
1.0.0 · 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 B58DecodeError
impl Debug for B58DecodeError
Source§impl Display for B58DecodeError
impl Display for B58DecodeError
Source§impl PartialEq for B58DecodeError
impl PartialEq for B58DecodeError
impl Copy for B58DecodeError
impl Eq for B58DecodeError
impl StructuralPartialEq for B58DecodeError
Auto Trait Implementations§
impl Freeze for B58DecodeError
impl RefUnwindSafe for B58DecodeError
impl Send for B58DecodeError
impl Sync for B58DecodeError
impl Unpin for B58DecodeError
impl UnsafeUnpin for B58DecodeError
impl UnwindSafe for B58DecodeError
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