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 PartialEq<Error> for Error
impl PartialEq<Error> for Error
impl Copy for Error
impl Eq for Error
impl StructuralEq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
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