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