pub enum RecordingSort {
Alpha,
Random,
Unknown(String),
}Expand description
Sort order for selected recordings.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for RecordingSort
impl Clone for RecordingSort
Source§fn clone(&self) -> RecordingSort
fn clone(&self) -> RecordingSort
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 RecordingSort
impl Debug for RecordingSort
Source§impl<'de> Deserialize<'de> for RecordingSort
impl<'de> Deserialize<'de> for RecordingSort
Source§fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for RecordingSort
impl Display for RecordingSort
impl Eq for RecordingSort
Source§impl Hash for RecordingSort
impl Hash for RecordingSort
Source§impl PartialEq for RecordingSort
impl PartialEq for RecordingSort
Source§fn eq(&self, other: &RecordingSort) -> bool
fn eq(&self, other: &RecordingSort) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RecordingSort
impl Serialize for RecordingSort
impl StructuralPartialEq for RecordingSort
Auto Trait Implementations§
impl Freeze for RecordingSort
impl RefUnwindSafe for RecordingSort
impl Send for RecordingSort
impl Sync for RecordingSort
impl Unpin for RecordingSort
impl UnsafeUnpin for RecordingSort
impl UnwindSafe for RecordingSort
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