pub enum AlignmentMemory {
Full,
RollingScoreOnly,
}Expand description
Whether to retain the full proof table or only the final rolling row.
Variants§
Full
Retain backpointers and return the full alignment path.
RollingScoreOnly
Retain two score rows while solving and return score-only evidence.
Trait Implementations§
Source§impl Clone for AlignmentMemory
impl Clone for AlignmentMemory
Source§fn clone(&self) -> AlignmentMemory
fn clone(&self) -> AlignmentMemory
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 AlignmentMemory
Source§impl Debug for AlignmentMemory
impl Debug for AlignmentMemory
Source§impl Default for AlignmentMemory
impl Default for AlignmentMemory
Source§fn default() -> AlignmentMemory
fn default() -> AlignmentMemory
Returns the “default value” for a type. Read more
impl Eq for AlignmentMemory
Source§impl PartialEq for AlignmentMemory
impl PartialEq for AlignmentMemory
impl StructuralPartialEq for AlignmentMemory
Auto Trait Implementations§
impl Freeze for AlignmentMemory
impl RefUnwindSafe for AlignmentMemory
impl Send for AlignmentMemory
impl Sync for AlignmentMemory
impl Unpin for AlignmentMemory
impl UnsafeUnpin for AlignmentMemory
impl UnwindSafe for AlignmentMemory
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