pub enum AlignmentCertificate<C> {
Full {
cells: Vec<Vec<Option<AlignmentCell<C>>>>,
},
Rolling {
final_row: Vec<Option<C>>,
endpoint: usize,
},
}Expand description
Optimality evidence retained under the selected memory policy.
Variants§
Full
Full prefix-grid Bellman table with backpointers.
Fields
§
cells: Vec<Vec<Option<AlignmentCell<C>>>>Row-major (left prefix, right prefix) cells.
Rolling
Final score row reproduced by rolling-memory evaluation.
Trait Implementations§
Source§impl<C: Clone> Clone for AlignmentCertificate<C>
impl<C: Clone> Clone for AlignmentCertificate<C>
Source§fn clone(&self) -> AlignmentCertificate<C>
fn clone(&self) -> AlignmentCertificate<C>
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<C: Debug> Debug for AlignmentCertificate<C>
impl<C: Debug> Debug for AlignmentCertificate<C>
impl<C: Eq> Eq for AlignmentCertificate<C>
Source§impl<C: PartialEq> PartialEq for AlignmentCertificate<C>
impl<C: PartialEq> PartialEq for AlignmentCertificate<C>
impl<C: PartialEq> StructuralPartialEq for AlignmentCertificate<C>
Auto Trait Implementations§
impl<C> Freeze for AlignmentCertificate<C>
impl<C> RefUnwindSafe for AlignmentCertificate<C>where
C: RefUnwindSafe,
impl<C> Send for AlignmentCertificate<C>where
C: Send,
impl<C> Sync for AlignmentCertificate<C>where
C: Sync,
impl<C> Unpin for AlignmentCertificate<C>where
C: Unpin,
impl<C> UnsafeUnpin for AlignmentCertificate<C>
impl<C> UnwindSafe for AlignmentCertificate<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