pub enum GetOrdersOrderBy {
Asc,
Desc,
}Expand description
GetOrdersOrderBy
JSON schema
{
"default": "DESC",
"type": "string",
"enum": [
"ASC",
"DESC"
],
"minLength": 1
}Variants§
Trait Implementations§
Source§impl Clone for GetOrdersOrderBy
impl Clone for GetOrdersOrderBy
Source§fn clone(&self) -> GetOrdersOrderBy
fn clone(&self) -> GetOrdersOrderBy
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 moreimpl Copy for GetOrdersOrderBy
Source§impl Debug for GetOrdersOrderBy
impl Debug for GetOrdersOrderBy
Source§impl Default for GetOrdersOrderBy
impl Default for GetOrdersOrderBy
Source§impl<'de> Deserialize<'de> for GetOrdersOrderBy
impl<'de> Deserialize<'de> for GetOrdersOrderBy
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 GetOrdersOrderBy
impl Display for GetOrdersOrderBy
impl Eq for GetOrdersOrderBy
Source§impl FromStr for GetOrdersOrderBy
impl FromStr for GetOrdersOrderBy
Source§impl Hash for GetOrdersOrderBy
impl Hash for GetOrdersOrderBy
Source§impl Ord for GetOrdersOrderBy
impl Ord for GetOrdersOrderBy
Source§fn cmp(&self, other: &GetOrdersOrderBy) -> Ordering
fn cmp(&self, other: &GetOrdersOrderBy) -> 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 GetOrdersOrderBy
impl PartialEq for GetOrdersOrderBy
Source§impl PartialOrd for GetOrdersOrderBy
impl PartialOrd for GetOrdersOrderBy
Source§impl Serialize for GetOrdersOrderBy
impl Serialize for GetOrdersOrderBy
impl StructuralPartialEq for GetOrdersOrderBy
Source§impl TryFrom<&String> for GetOrdersOrderBy
impl TryFrom<&String> for GetOrdersOrderBy
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for GetOrdersOrderBy
impl TryFrom<&str> for GetOrdersOrderBy
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for GetOrdersOrderBy
impl TryFrom<String> for GetOrdersOrderBy
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for GetOrdersOrderBy
impl RefUnwindSafe for GetOrdersOrderBy
impl Send for GetOrdersOrderBy
impl Sync for GetOrdersOrderBy
impl Unpin for GetOrdersOrderBy
impl UnsafeUnpin for GetOrdersOrderBy
impl UnwindSafe for GetOrdersOrderBy
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