pub enum AlignmentMove {
Match,
Delete,
Insert,
}Expand description
Stable predecessor move in a full alignment certificate.
Variants§
Match
Consume one item from each sequence.
Delete
Consume one left item.
Insert
Consume one right item.
Trait Implementations§
Source§impl Clone for AlignmentMove
impl Clone for AlignmentMove
Source§fn clone(&self) -> AlignmentMove
fn clone(&self) -> AlignmentMove
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 AlignmentMove
Source§impl Debug for AlignmentMove
impl Debug for AlignmentMove
impl Eq for AlignmentMove
Source§impl PartialEq for AlignmentMove
impl PartialEq for AlignmentMove
impl StructuralPartialEq for AlignmentMove
Auto Trait Implementations§
impl Freeze for AlignmentMove
impl RefUnwindSafe for AlignmentMove
impl Send for AlignmentMove
impl Sync for AlignmentMove
impl Unpin for AlignmentMove
impl UnsafeUnpin for AlignmentMove
impl UnwindSafe for AlignmentMove
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