Enum parity_bip39::Language
source · pub enum Language {
English,
SimplifiedChinese,
TraditionalChinese,
Czech,
French,
Italian,
Japanese,
Korean,
Portuguese,
Spanish,
}
Expand description
Language to be used for the mnemonic phrase.
The English language is always available, other languages are enabled using the compilation features.
Variants§
English
The English language.
SimplifiedChinese
Available on crate feature
chinese-simplified
only.The Simplified Chinese language.
TraditionalChinese
Available on crate feature
chinese-traditional
only.The Traditional Chinese language.
Czech
Available on crate feature
czech
only.The Czech language.
French
Available on crate feature
french
only.The French language.
Italian
Available on crate feature
italian
only.The Italian language.
Japanese
Available on crate feature
japanese
only.The Japanese language.
Korean
Available on crate feature
korean
only.The Korean language.
Portuguese
Available on crate feature
portuguese
only.The Portuguese language.
Spanish
Available on crate feature
spanish
only.The Spanish language.
Implementations§
Trait Implementations§
source§impl Ord for Language
impl Ord for Language
source§impl PartialEq for Language
impl PartialEq for Language
source§impl PartialOrd for Language
impl PartialOrd for Language
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Language
impl DefaultIsZeroes for Language
Available on crate feature
zeroize
only.impl Eq for Language
impl StructuralPartialEq for Language
Auto Trait Implementations§
impl Freeze for Language
impl RefUnwindSafe for Language
impl Send for Language
impl Sync for Language
impl Unpin for Language
impl UnwindSafe for Language
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