pub enum QueueRow {
Action(ActionRow),
Digest(DigestRow),
}Expand description
One row of the queue, priced by what it asks of the operator.
Variants§
Action(ActionRow)
A single task and its one next action.
Digest(DigestRow)
A project’s untriaged proposals, collapsed into one triage row (§7).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for QueueRow
impl RefUnwindSafe for QueueRow
impl Send for QueueRow
impl Sync for QueueRow
impl Unpin for QueueRow
impl UnsafeUnpin for QueueRow
impl UnwindSafe for QueueRow
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