pub enum GetUserMovementsOrderBy {
Asc,
Desc,
}Expand description
GetUserMovementsOrderBy
JSON schema
{
"default": "DESC",
"type": "string",
"enum": [
"ASC",
"DESC"
],
"minLength": 1
}Variants§
Trait Implementations§
Source§impl Clone for GetUserMovementsOrderBy
impl Clone for GetUserMovementsOrderBy
Source§fn clone(&self) -> GetUserMovementsOrderBy
fn clone(&self) -> GetUserMovementsOrderBy
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 GetUserMovementsOrderBy
impl Debug for GetUserMovementsOrderBy
Source§impl Default for GetUserMovementsOrderBy
impl Default for GetUserMovementsOrderBy
Source§impl<'de> Deserialize<'de> for GetUserMovementsOrderBy
impl<'de> Deserialize<'de> for GetUserMovementsOrderBy
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 GetUserMovementsOrderBy
impl Display for GetUserMovementsOrderBy
Source§impl FromStr for GetUserMovementsOrderBy
impl FromStr for GetUserMovementsOrderBy
Source§impl Hash for GetUserMovementsOrderBy
impl Hash for GetUserMovementsOrderBy
Source§impl Ord for GetUserMovementsOrderBy
impl Ord for GetUserMovementsOrderBy
Source§fn cmp(&self, other: &GetUserMovementsOrderBy) -> Ordering
fn cmp(&self, other: &GetUserMovementsOrderBy) -> 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 GetUserMovementsOrderBy
impl PartialEq for GetUserMovementsOrderBy
Source§fn eq(&self, other: &GetUserMovementsOrderBy) -> bool
fn eq(&self, other: &GetUserMovementsOrderBy) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for GetUserMovementsOrderBy
impl PartialOrd for GetUserMovementsOrderBy
Source§impl Serialize for GetUserMovementsOrderBy
impl Serialize for GetUserMovementsOrderBy
Source§impl TryFrom<&String> for GetUserMovementsOrderBy
impl TryFrom<&String> for GetUserMovementsOrderBy
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for GetUserMovementsOrderBy
impl TryFrom<&str> for GetUserMovementsOrderBy
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for GetUserMovementsOrderBy
impl TryFrom<String> for GetUserMovementsOrderBy
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for GetUserMovementsOrderBy
impl Eq for GetUserMovementsOrderBy
impl StructuralPartialEq for GetUserMovementsOrderBy
Auto Trait Implementations§
impl Freeze for GetUserMovementsOrderBy
impl RefUnwindSafe for GetUserMovementsOrderBy
impl Send for GetUserMovementsOrderBy
impl Sync for GetUserMovementsOrderBy
impl Unpin for GetUserMovementsOrderBy
impl UnsafeUnpin for GetUserMovementsOrderBy
impl UnwindSafe for GetUserMovementsOrderBy
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,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.