pub enum QueueSortBy {
Priority,
}Expand description
Sort-by field for ralph queue sort (reorders queue file).
Intentionally conservative: only supports priority to avoid dangerous “reorder by arbitrary field” footguns that mutate queue.json.
Variants§
Priority
Sort by priority.
Trait Implementations§
Source§impl Clone for QueueSortBy
impl Clone for QueueSortBy
Source§fn clone(&self) -> QueueSortBy
fn clone(&self) -> QueueSortBy
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 QueueSortBy
impl Debug for QueueSortBy
Source§impl Display for QueueSortBy
impl Display for QueueSortBy
Source§impl ValueEnum for QueueSortBy
impl ValueEnum for QueueSortBy
impl Copy for QueueSortBy
Auto Trait Implementations§
impl Freeze for QueueSortBy
impl RefUnwindSafe for QueueSortBy
impl Send for QueueSortBy
impl Sync for QueueSortBy
impl Unpin for QueueSortBy
impl UnsafeUnpin for QueueSortBy
impl UnwindSafe for QueueSortBy
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