Enum base58::FromBase58Error
source · [−]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
sourceimpl Debug for FromBase58Error
impl Debug for FromBase58Error
sourceimpl PartialEq<FromBase58Error> for FromBase58Error
impl PartialEq<FromBase58Error> for FromBase58Error
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &FromBase58Error) -> bool
fn ne(&self, other: &FromBase58Error) -> bool
This method tests for !=
.
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more