pub enum LivestreamSort {
ViewerCount,
StartedAt,
}Expand description
Sort order for livestream queries
Variants§
ViewerCount
Sort by viewer count (highest first) — default
StartedAt
Sort by stream start time (most recent first)
Trait Implementations§
Source§impl Clone for LivestreamSort
impl Clone for LivestreamSort
Source§fn clone(&self) -> LivestreamSort
fn clone(&self) -> LivestreamSort
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 LivestreamSort
impl Debug for LivestreamSort
impl Copy for LivestreamSort
Auto Trait Implementations§
impl Freeze for LivestreamSort
impl RefUnwindSafe for LivestreamSort
impl Send for LivestreamSort
impl Sync for LivestreamSort
impl Unpin for LivestreamSort
impl UnsafeUnpin for LivestreamSort
impl UnwindSafe for LivestreamSort
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