pub enum RemoteControlClientsListOrder {
Asc,
Desc,
}Expand description
RemoteControlClientsListOrder
JSON schema
{
"type": "string",
"enum": [
"asc",
"desc"
]
}Variants§
Trait Implementations§
Source§impl Clone for RemoteControlClientsListOrder
impl Clone for RemoteControlClientsListOrder
Source§fn clone(&self) -> RemoteControlClientsListOrder
fn clone(&self) -> RemoteControlClientsListOrder
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<'de> Deserialize<'de> for RemoteControlClientsListOrder
impl<'de> Deserialize<'de> for RemoteControlClientsListOrder
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 Hash for RemoteControlClientsListOrder
impl Hash for RemoteControlClientsListOrder
Source§impl Ord for RemoteControlClientsListOrder
impl Ord for RemoteControlClientsListOrder
Source§fn cmp(&self, other: &RemoteControlClientsListOrder) -> Ordering
fn cmp(&self, other: &RemoteControlClientsListOrder) -> 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 RemoteControlClientsListOrder
impl PartialEq for RemoteControlClientsListOrder
Source§fn eq(&self, other: &RemoteControlClientsListOrder) -> bool
fn eq(&self, other: &RemoteControlClientsListOrder) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for RemoteControlClientsListOrder
impl PartialOrd for RemoteControlClientsListOrder
Source§impl TryFrom<&String> for RemoteControlClientsListOrder
impl TryFrom<&String> for RemoteControlClientsListOrder
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for RemoteControlClientsListOrder
impl TryFrom<&str> for RemoteControlClientsListOrder
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for RemoteControlClientsListOrder
impl TryFrom<String> for RemoteControlClientsListOrder
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for RemoteControlClientsListOrder
impl Eq for RemoteControlClientsListOrder
impl StructuralPartialEq for RemoteControlClientsListOrder
Auto Trait Implementations§
impl Freeze for RemoteControlClientsListOrder
impl RefUnwindSafe for RemoteControlClientsListOrder
impl Send for RemoteControlClientsListOrder
impl Sync for RemoteControlClientsListOrder
impl Unpin for RemoteControlClientsListOrder
impl UnsafeUnpin for RemoteControlClientsListOrder
impl UnwindSafe for RemoteControlClientsListOrder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.