pub enum AlignmentClass {
Reusable,
JudgeDirty,
EffectDirty,
New,
Orphaned,
}Expand description
Alignment classification of an old step record against the new IR (spine §6.7-A, closed five-value set).
Variants§
Reusable
Same effect and judge hash: record adopted as-is.
JudgeDirty
Judge hash changed only: offline re-judgement over archived evidence.
EffectDirty
Effect hash changed: record and its data-dependent downstream invalid.
New
Present in the new IR only; resume point must not pass it.
Orphaned
Present in the old record only; archived, never adopted.
Trait Implementations§
Source§impl Clone for AlignmentClass
impl Clone for AlignmentClass
Source§fn clone(&self) -> AlignmentClass
fn clone(&self) -> AlignmentClass
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 AlignmentClass
Source§impl Debug for AlignmentClass
impl Debug for AlignmentClass
Source§impl<'de> Deserialize<'de> for AlignmentClass
impl<'de> Deserialize<'de> for AlignmentClass
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 AlignmentClass
Source§impl Hash for AlignmentClass
impl Hash for AlignmentClass
Source§impl JsonSchema for AlignmentClass
impl JsonSchema for AlignmentClass
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 Ord for AlignmentClass
impl Ord for AlignmentClass
Source§fn cmp(&self, other: &AlignmentClass) -> Ordering
fn cmp(&self, other: &AlignmentClass) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AlignmentClass
impl PartialEq for AlignmentClass
Source§impl PartialOrd for AlignmentClass
impl PartialOrd for AlignmentClass
Source§impl Serialize for AlignmentClass
impl Serialize for AlignmentClass
impl StructuralPartialEq for AlignmentClass
Auto Trait Implementations§
impl Freeze for AlignmentClass
impl RefUnwindSafe for AlignmentClass
impl Send for AlignmentClass
impl Sync for AlignmentClass
impl Unpin for AlignmentClass
impl UnsafeUnpin for AlignmentClass
impl UnwindSafe for AlignmentClass
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