pub struct BacklogDelta {
pub outbox: Option<i64>,
pub questions: Option<i64>,
pub frontdoor: Option<i64>,
pub proposals: Option<i64>,
pub candidates: Option<i64>,
}Expand description
What one run added to, or took off, the owner’s plate.
The appraisal-relevant quantity, and the reason a level alone will not do. A run that stages nine drafts raises the outbox’s depth by nine; read as a level at run end, its own output is indistinguishable from a backlog it inherited. The question the goal system asks — did this run leave the owner better or worse off — is answerable only from the difference.
Fields§
§outbox: Option<i64>§questions: Option<i64>§frontdoor: Option<i64>§proposals: Option<i64>§candidates: Option<i64>Implementations§
Trait Implementations§
Source§impl Clone for BacklogDelta
impl Clone for BacklogDelta
Source§fn clone(&self) -> BacklogDelta
fn clone(&self) -> BacklogDelta
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 moreimpl Copy for BacklogDelta
Source§impl Debug for BacklogDelta
impl Debug for BacklogDelta
Source§impl Default for BacklogDelta
impl Default for BacklogDelta
Source§fn default() -> BacklogDelta
fn default() -> BacklogDelta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BacklogDelta
impl<'de> Deserialize<'de> for BacklogDelta
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for BacklogDelta
Source§impl PartialEq for BacklogDelta
impl PartialEq for BacklogDelta
Source§impl Serialize for BacklogDelta
impl Serialize for BacklogDelta
impl StructuralPartialEq for BacklogDelta
Auto Trait Implementations§
impl Freeze for BacklogDelta
impl RefUnwindSafe for BacklogDelta
impl Send for BacklogDelta
impl Sync for BacklogDelta
impl Unpin for BacklogDelta
impl UnsafeUnpin for BacklogDelta
impl UnwindSafe for BacklogDelta
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