pub enum AdminUpdateI18nResponseAvailableLocalesItem {
En,
De,
Es,
Fr,
It,
ZhCn,
}Expand description
AdminUpdateI18nResponseAvailableLocalesItem
JSON schema
{
"type": "string",
"enum": [
"en",
"de",
"es",
"fr",
"it",
"zh-CN"
]
}Variants§
Trait Implementations§
Source§impl Clone for AdminUpdateI18nResponseAvailableLocalesItem
impl Clone for AdminUpdateI18nResponseAvailableLocalesItem
Source§fn clone(&self) -> AdminUpdateI18nResponseAvailableLocalesItem
fn clone(&self) -> AdminUpdateI18nResponseAvailableLocalesItem
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<'de> Deserialize<'de> for AdminUpdateI18nResponseAvailableLocalesItem
impl<'de> Deserialize<'de> for AdminUpdateI18nResponseAvailableLocalesItem
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 From<&AdminUpdateI18nResponseAvailableLocalesItem> for AdminUpdateI18nResponseAvailableLocalesItem
impl From<&AdminUpdateI18nResponseAvailableLocalesItem> for AdminUpdateI18nResponseAvailableLocalesItem
Source§fn from(value: &AdminUpdateI18nResponseAvailableLocalesItem) -> Self
fn from(value: &AdminUpdateI18nResponseAvailableLocalesItem) -> Self
Converts to this type from the input type.
Source§impl Ord for AdminUpdateI18nResponseAvailableLocalesItem
impl Ord for AdminUpdateI18nResponseAvailableLocalesItem
Source§fn cmp(&self, other: &AdminUpdateI18nResponseAvailableLocalesItem) -> Ordering
fn cmp(&self, other: &AdminUpdateI18nResponseAvailableLocalesItem) -> 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 AdminUpdateI18nResponseAvailableLocalesItem
impl PartialEq for AdminUpdateI18nResponseAvailableLocalesItem
Source§fn eq(&self, other: &AdminUpdateI18nResponseAvailableLocalesItem) -> bool
fn eq(&self, other: &AdminUpdateI18nResponseAvailableLocalesItem) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AdminUpdateI18nResponseAvailableLocalesItem
impl PartialOrd for AdminUpdateI18nResponseAvailableLocalesItem
Source§fn partial_cmp(
&self,
other: &AdminUpdateI18nResponseAvailableLocalesItem,
) -> Option<Ordering>
fn partial_cmp( &self, other: &AdminUpdateI18nResponseAvailableLocalesItem, ) -> Option<Ordering>
Source§impl TryFrom<&String> for AdminUpdateI18nResponseAvailableLocalesItem
impl TryFrom<&String> for AdminUpdateI18nResponseAvailableLocalesItem
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for AdminUpdateI18nResponseAvailableLocalesItem
impl TryFrom<&str> for AdminUpdateI18nResponseAvailableLocalesItem
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for AdminUpdateI18nResponseAvailableLocalesItem
impl TryFrom<String> for AdminUpdateI18nResponseAvailableLocalesItem
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for AdminUpdateI18nResponseAvailableLocalesItem
impl Eq for AdminUpdateI18nResponseAvailableLocalesItem
impl StructuralPartialEq for AdminUpdateI18nResponseAvailableLocalesItem
Auto Trait Implementations§
impl Freeze for AdminUpdateI18nResponseAvailableLocalesItem
impl RefUnwindSafe for AdminUpdateI18nResponseAvailableLocalesItem
impl Send for AdminUpdateI18nResponseAvailableLocalesItem
impl Sync for AdminUpdateI18nResponseAvailableLocalesItem
impl Unpin for AdminUpdateI18nResponseAvailableLocalesItem
impl UnsafeUnpin for AdminUpdateI18nResponseAvailableLocalesItem
impl UnwindSafe for AdminUpdateI18nResponseAvailableLocalesItem
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