pub enum Message_Locale {
UNSPECIFIED = 0,
BRAZLIAN_PORTUGUESE = 1,
ENGLISH = 2,
FRENCH = 3,
GERMAN = 4,
JAPANESE = 5,
RUSSIAN = 6,
SIMPLIFIED_CHINESE = 7,
SPANISH = 8,
}
Variants§
UNSPECIFIED = 0
BRAZLIAN_PORTUGUESE = 1
ENGLISH = 2
FRENCH = 3
GERMAN = 4
JAPANESE = 5
RUSSIAN = 6
SIMPLIFIED_CHINESE = 7
SPANISH = 8
Trait Implementations§
Source§impl Clone for Message_Locale
impl Clone for Message_Locale
Source§fn clone(&self) -> Message_Locale
fn clone(&self) -> Message_Locale
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Message_Locale
impl Debug for Message_Locale
Source§impl Default for Message_Locale
impl Default for Message_Locale
Source§impl Hash for Message_Locale
impl Hash for Message_Locale
Source§impl PartialEq for Message_Locale
impl PartialEq for Message_Locale
Source§impl ProtobufEnum for Message_Locale
impl ProtobufEnum for Message_Locale
Source§fn from_i32(value: i32) -> Option<Message_Locale>
fn from_i32(value: i32) -> Option<Message_Locale>
Try to create an enum from
i32
value.
Return None
if value is unknown.Source§fn enum_descriptor_static() -> &'static EnumDescriptor
fn enum_descriptor_static() -> &'static EnumDescriptor
Get enum descriptor by type.
Source§fn descriptor(&self) -> &'static EnumValueDescriptor
fn descriptor(&self) -> &'static EnumValueDescriptor
Get enum value descriptor.
Source§fn enum_descriptor(&self) -> &'static EnumDescriptor
fn enum_descriptor(&self) -> &'static EnumDescriptor
Get enum descriptor.
Source§impl ProtobufValue for Message_Locale
impl ProtobufValue for Message_Locale
Source§fn as_ref(&self) -> ReflectValueRef<'_>
fn as_ref(&self) -> ReflectValueRef<'_>
As ref
Source§fn is_non_zero(&self) -> bool
fn is_non_zero(&self) -> bool
Is value non-zero?
Source§fn as_ref_copy(&self) -> ReflectValueRef<'static>
fn as_ref_copy(&self) -> ReflectValueRef<'static>
Source§impl ToString for Message_Locale
impl ToString for Message_Locale
impl Copy for Message_Locale
impl Eq for Message_Locale
impl StructuralPartialEq for Message_Locale
Auto Trait Implementations§
impl Freeze for Message_Locale
impl RefUnwindSafe for Message_Locale
impl Send for Message_Locale
impl Sync for Message_Locale
impl Unpin for Message_Locale
impl UnwindSafe for Message_Locale
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