pub struct Alignment<C> {
pub score: C,
pub steps: Option<Vec<AlignmentStep<C>>>,
pub certificate: AlignmentCertificate<C>,
pub receipt: AlgorithmReceipt,
}Expand description
Minimum-cost alignment plus proof and deterministic accounting.
Fields§
§score: CExact minimum score.
steps: Option<Vec<AlignmentStep<C>>>Stable full path, absent in rolling score-only mode.
certificate: AlignmentCertificate<C>Proof material selected by the memory policy.
receipt: AlgorithmReceiptCell/edge work accounting.
Trait Implementations§
impl<C: Eq> Eq for Alignment<C>
impl<C: PartialEq> StructuralPartialEq for Alignment<C>
Auto Trait Implementations§
impl<C> Freeze for Alignment<C>where
C: Freeze,
impl<C> RefUnwindSafe for Alignment<C>where
C: RefUnwindSafe,
impl<C> Send for Alignment<C>where
C: Send,
impl<C> Sync for Alignment<C>where
C: Sync,
impl<C> Unpin for Alignment<C>where
C: Unpin,
impl<C> UnsafeUnpin for Alignment<C>where
C: UnsafeUnpin,
impl<C> UnwindSafe for Alignment<C>where
C: UnwindSafe,
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