pub enum GetBrandingLocale {
En,
De,
Es,
Fr,
It,
ZhCn,
}Expand description
GetBrandingLocale
JSON schema
{
"type": "string",
"enum": [
"en",
"de",
"es",
"fr",
"it",
"zh-CN"
]
}Variants§
Trait Implementations§
Source§impl Clone for GetBrandingLocale
impl Clone for GetBrandingLocale
Source§fn clone(&self) -> GetBrandingLocale
fn clone(&self) -> GetBrandingLocale
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 moreSource§impl Debug for GetBrandingLocale
impl Debug for GetBrandingLocale
Source§impl<'de> Deserialize<'de> for GetBrandingLocale
impl<'de> Deserialize<'de> for GetBrandingLocale
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for GetBrandingLocale
impl Display for GetBrandingLocale
Source§impl From<&GetBrandingLocale> for GetBrandingLocale
impl From<&GetBrandingLocale> for GetBrandingLocale
Source§fn from(value: &GetBrandingLocale) -> Self
fn from(value: &GetBrandingLocale) -> Self
Converts to this type from the input type.
Source§impl FromStr for GetBrandingLocale
impl FromStr for GetBrandingLocale
Source§impl Hash for GetBrandingLocale
impl Hash for GetBrandingLocale
Source§impl Ord for GetBrandingLocale
impl Ord for GetBrandingLocale
Source§fn cmp(&self, other: &GetBrandingLocale) -> Ordering
fn cmp(&self, other: &GetBrandingLocale) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for GetBrandingLocale
impl PartialEq for GetBrandingLocale
Source§fn eq(&self, other: &GetBrandingLocale) -> bool
fn eq(&self, other: &GetBrandingLocale) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for GetBrandingLocale
impl PartialOrd for GetBrandingLocale
Source§impl Serialize for GetBrandingLocale
impl Serialize for GetBrandingLocale
Source§impl TryFrom<&String> for GetBrandingLocale
impl TryFrom<&String> for GetBrandingLocale
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for GetBrandingLocale
impl TryFrom<&str> for GetBrandingLocale
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for GetBrandingLocale
impl TryFrom<String> for GetBrandingLocale
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for GetBrandingLocale
impl Eq for GetBrandingLocale
impl StructuralPartialEq for GetBrandingLocale
Auto Trait Implementations§
impl Freeze for GetBrandingLocale
impl RefUnwindSafe for GetBrandingLocale
impl Send for GetBrandingLocale
impl Sync for GetBrandingLocale
impl Unpin for GetBrandingLocale
impl UnsafeUnpin for GetBrandingLocale
impl UnwindSafe for GetBrandingLocale
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