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