Struct base58ck::error::IncorrectChecksumError
source · pub struct IncorrectChecksumError { /* private fields */ }
Expand description
Checksum was not correct.
Implementations§
source§impl IncorrectChecksumError
impl IncorrectChecksumError
sourcepub fn incorrect_checksum(&self) -> (u32, u32)
pub fn incorrect_checksum(&self) -> (u32, u32)
Returns the incorrect checksum along with the expected checksum.
Trait Implementations§
source§impl Clone for IncorrectChecksumError
impl Clone for IncorrectChecksumError
source§fn clone(&self) -> IncorrectChecksumError
fn clone(&self) -> IncorrectChecksumError
Returns a copy 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 IncorrectChecksumError
impl Debug for IncorrectChecksumError
source§impl Display for IncorrectChecksumError
impl Display for IncorrectChecksumError
source§impl Error for IncorrectChecksumError
impl Error for IncorrectChecksumError
1.30.0 · 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<IncorrectChecksumError> for Error
impl From<IncorrectChecksumError> for Error
source§fn from(e: IncorrectChecksumError) -> Self
fn from(e: IncorrectChecksumError) -> Self
Converts to this type from the input type.
source§impl PartialEq<IncorrectChecksumError> for IncorrectChecksumError
impl PartialEq<IncorrectChecksumError> for IncorrectChecksumError
source§fn eq(&self, other: &IncorrectChecksumError) -> bool
fn eq(&self, other: &IncorrectChecksumError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for IncorrectChecksumError
impl StructuralEq for IncorrectChecksumError
impl StructuralPartialEq for IncorrectChecksumError
Auto Trait Implementations§
impl RefUnwindSafe for IncorrectChecksumError
impl Send for IncorrectChecksumError
impl Sync for IncorrectChecksumError
impl Unpin for IncorrectChecksumError
impl UnwindSafe for IncorrectChecksumError
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