pub struct AlignmentSummary {
pub reusable: u32,
pub judge_dirty: u32,
pub effect_dirty: u32,
pub new: u32,
pub orphaned: u32,
}Expand description
Per-class alignment counts of the latest resume (08 §2.4 top bar).
Fields§
§reusable: u32History kept as-is.
judge_dirty: u32Offline re-judgement, no device redispatch.
effect_dirty: u32Step + downstream invalidated, re-runs.
new: u32Newly introduced steps.
orphaned: u32Steps whose history lost its IR node.
Trait Implementations§
Source§impl Clone for AlignmentSummary
impl Clone for AlignmentSummary
Source§fn clone(&self) -> AlignmentSummary
fn clone(&self) -> AlignmentSummary
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 moreSource§impl Debug for AlignmentSummary
impl Debug for AlignmentSummary
Source§impl<'de> Deserialize<'de> for AlignmentSummary
impl<'de> Deserialize<'de> for AlignmentSummary
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
Source§impl JsonSchema for AlignmentSummary
impl JsonSchema for AlignmentSummary
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for AlignmentSummary
impl PartialEq for AlignmentSummary
Source§impl Serialize for AlignmentSummary
impl Serialize for AlignmentSummary
impl StructuralPartialEq for AlignmentSummary
Auto Trait Implementations§
impl Freeze for AlignmentSummary
impl RefUnwindSafe for AlignmentSummary
impl Send for AlignmentSummary
impl Sync for AlignmentSummary
impl Unpin for AlignmentSummary
impl UnsafeUnpin for AlignmentSummary
impl UnwindSafe for AlignmentSummary
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