Enum parity_bip39::Error
source · pub enum Error {
BadWordCount(usize),
UnknownWord(usize),
BadEntropyBitCount(usize),
InvalidChecksum,
AmbiguousLanguages(AmbiguousLanguages),
}
Expand description
A BIP39 error.
Variants§
BadWordCount(usize)
Mnemonic has a word count that is not a multiple of 6.
UnknownWord(usize)
Mnemonic contains an unknown word.
Error contains the index of the word.
Use mnemonic.split_whitespace().get(i)
to get the word.
BadEntropyBitCount(usize)
Entropy was not a multiple of 32 bits or between 128-256n bits in length.
InvalidChecksum
The mnemonic has an invalid checksum.
AmbiguousLanguages(AmbiguousLanguages)
The mnemonic can be interpreted as multiple languages. Use the helper methods of the inner struct to inspect which languages are possible.
Trait Implementations§
source§impl Error for Error
Available on crate feature std
only.
impl Error for Error
Available on crate feature
std
only.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 PartialEq for Error
impl PartialEq for Error
impl Copy for Error
impl Eq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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