pub enum WordCount {
Words12 = 12,
Words15 = 15,
Words18 = 18,
Words21 = 21,
Words24 = 24,
}
Expand description
BIP39 mnemonic word count options
Variants§
Words12 = 12
12-word mnemonic (128 bits of entropy)
Words15 = 15
15-word mnemonic (160 bits of entropy)
Words18 = 18
18-word mnemonic (192 bits of entropy)
Words21 = 21
21-word mnemonic (224 bits of entropy)
Words24 = 24
24-word mnemonic (256 bits of entropy)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WordCount
impl RefUnwindSafe for WordCount
impl Send for WordCount
impl Sync for WordCount
impl Unpin for WordCount
impl UnwindSafe for WordCount
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