Enum base58::FromBase58Error
source · pub enum FromBase58Error {
InvalidBase58Character(char, usize),
InvalidBase58Length,
}
Expand description
Errors that can occur when decoding base58 encoded string.
Variants§
InvalidBase58Character(char, usize)
The input contained a character which is not a part of the base58 format.
InvalidBase58Length
The input had invalid length.
Trait Implementations§
source§impl Debug for FromBase58Error
impl Debug for FromBase58Error
source§impl PartialEq<FromBase58Error> for FromBase58Error
impl PartialEq<FromBase58Error> for FromBase58Error
source§fn eq(&self, other: &FromBase58Error) -> bool
fn eq(&self, other: &FromBase58Error) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FromBase58Error
Auto Trait Implementations§
impl RefUnwindSafe for FromBase58Error
impl Send for FromBase58Error
impl Sync for FromBase58Error
impl Unpin for FromBase58Error
impl UnwindSafe for FromBase58Error
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