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