pub enum QueueListSortBy {
Priority,
CreatedAt,
UpdatedAt,
StartedAt,
ScheduledStart,
Status,
Title,
}Expand description
Sort-by field for ralph queue list (sorts output only).
Supports comprehensive time-based and metadata sorting for triage without the risks of mutating queue.json ordering.
Variants§
Priority
Sort by priority.
CreatedAt
Sort by created_at timestamp.
UpdatedAt
Sort by updated_at timestamp.
StartedAt
Sort by started_at timestamp.
ScheduledStart
Sort by scheduled_start timestamp.
Status
Sort by status lifecycle ordering.
Title
Sort by title (case-insensitive).
Trait Implementations§
Source§impl Clone for QueueListSortBy
impl Clone for QueueListSortBy
Source§fn clone(&self) -> QueueListSortBy
fn clone(&self) -> QueueListSortBy
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 QueueListSortBy
impl Debug for QueueListSortBy
Source§impl Display for QueueListSortBy
impl Display for QueueListSortBy
Source§impl ValueEnum for QueueListSortBy
impl ValueEnum for QueueListSortBy
impl Copy for QueueListSortBy
Auto Trait Implementations§
impl Freeze for QueueListSortBy
impl RefUnwindSafe for QueueListSortBy
impl Send for QueueListSortBy
impl Sync for QueueListSortBy
impl Unpin for QueueListSortBy
impl UnsafeUnpin for QueueListSortBy
impl UnwindSafe for QueueListSortBy
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