pub enum PaginationSortOrder {
Ascending,
Descending,
Unknown,
}Expand description
Whether to sort in ascending or descending order
Variants§
Trait Implementations§
Source§impl Clone for PaginationSortOrder
impl Clone for PaginationSortOrder
Source§fn clone(&self) -> PaginationSortOrder
fn clone(&self) -> PaginationSortOrder
Returns a duplicate of the value. Read more
1.0.0 · 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 PaginationSortOrder
impl Debug for PaginationSortOrder
Source§impl<'de> Deserialize<'de> for PaginationSortOrder
impl<'de> Deserialize<'de> for PaginationSortOrder
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 PartialEq for PaginationSortOrder
impl PartialEq for PaginationSortOrder
Source§impl Serialize for PaginationSortOrder
impl Serialize for PaginationSortOrder
impl Eq for PaginationSortOrder
impl StructuralPartialEq for PaginationSortOrder
Auto Trait Implementations§
impl Freeze for PaginationSortOrder
impl RefUnwindSafe for PaginationSortOrder
impl Send for PaginationSortOrder
impl Sync for PaginationSortOrder
impl Unpin for PaginationSortOrder
impl UnwindSafe for PaginationSortOrder
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