pub enum SeedType {
Exact,
OneMismatchLeftToRight,
OneMismatchRightToLeft,
MultiMismatchInsideOut,
}Expand description
Seed types for alignment
Variants§
Exact
Exact match seed
OneMismatchLeftToRight
1-mismatch seed (left to right)
OneMismatchRightToLeft
1-mismatch seed (right to left)
MultiMismatchInsideOut
Multi-mismatch seed (inside out)
Trait Implementations§
impl Copy for SeedType
impl Eq for SeedType
impl StructuralPartialEq for SeedType
Auto Trait Implementations§
impl Freeze for SeedType
impl RefUnwindSafe for SeedType
impl Send for SeedType
impl Sync for SeedType
impl Unpin for SeedType
impl UnsafeUnpin for SeedType
impl UnwindSafe for SeedType
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