pub enum ContentOrderBy {
CreatedAt,
UpdatedAt,
Price,
DownloadCount,
Title,
Size,
}Expand description
Content ordering options.
Variants§
CreatedAt
Order by creation date.
UpdatedAt
Order by update date.
Price
Order by price.
DownloadCount
Order by download count.
Title
Order by title.
Size
Order by size.
Trait Implementations§
Source§impl Clone for ContentOrderBy
impl Clone for ContentOrderBy
Source§fn clone(&self) -> ContentOrderBy
fn clone(&self) -> ContentOrderBy
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 ContentOrderBy
impl Debug for ContentOrderBy
Source§impl PartialEq for ContentOrderBy
impl PartialEq for ContentOrderBy
impl Copy for ContentOrderBy
impl Eq for ContentOrderBy
impl StructuralPartialEq for ContentOrderBy
Auto Trait Implementations§
impl Freeze for ContentOrderBy
impl RefUnwindSafe for ContentOrderBy
impl Send for ContentOrderBy
impl Sync for ContentOrderBy
impl Unpin for ContentOrderBy
impl UnwindSafe for ContentOrderBy
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