pub struct DigestRow {
pub project_name: String,
pub tasks: Vec<ActionRow>,
pub effective: f64,
}Expand description
One project’s proposals, collapsed so a triage backlog cannot swamp the queue with cheap rows (§7). Scored as its best child, so the digest survives the cut exactly when that child would have.
Fields§
§project_name: String§tasks: Vec<ActionRow>The constituent proposals, in the order they would have ranked.
effective: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for DigestRow
impl RefUnwindSafe for DigestRow
impl Send for DigestRow
impl Sync for DigestRow
impl Unpin for DigestRow
impl UnsafeUnpin for DigestRow
impl UnwindSafe for DigestRow
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