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