#[repr(u32)]pub enum SystemParamLanguage {
Japanese = 0,
English = 1,
French = 2,
Spanish = 3,
German = 4,
Italian = 5,
Dutch = 6,
Portugese = 7,
Russian = 8,
Korean = 9,
ChineseTraditional = 10,
ChineseSimplified = 11,
}Variants§
Japanese = 0
English = 1
French = 2
Spanish = 3
German = 4
Italian = 5
Dutch = 6
Portugese = 7
Russian = 8
Korean = 9
ChineseTraditional = 10
ChineseSimplified = 11
Trait Implementations§
Source§impl Clone for SystemParamLanguage
impl Clone for SystemParamLanguage
Source§fn clone(&self) -> SystemParamLanguage
fn clone(&self) -> SystemParamLanguage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SystemParamLanguage
Source§impl Debug for SystemParamLanguage
impl Debug for SystemParamLanguage
Source§impl TryFrom<u32> for SystemParamLanguage
impl TryFrom<u32> for SystemParamLanguage
Source§type Error = TryFromPrimitiveError<SystemParamLanguage>
type Error = TryFromPrimitiveError<SystemParamLanguage>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for SystemParamLanguage
impl TryFromPrimitive for SystemParamLanguage
const NAME: &'static str = "SystemParamLanguage"
type Primitive = u32
type Error = TryFromPrimitiveError<SystemParamLanguage>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
Auto Trait Implementations§
impl Freeze for SystemParamLanguage
impl RefUnwindSafe for SystemParamLanguage
impl Send for SystemParamLanguage
impl Sync for SystemParamLanguage
impl Unpin for SystemParamLanguage
impl UnsafeUnpin for SystemParamLanguage
impl UnwindSafe for SystemParamLanguage
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