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