pub enum AlignmentWindow {
Unbounded,
Radius(usize),
}Expand description
Window limiting which prefix-pair cells an alignment may visit.
Variants§
Unbounded
Evaluate the full prefix grid.
Radius(usize)
Permit cells whose prefix indices differ by at most radius.
Trait Implementations§
Source§impl Clone for AlignmentWindow
impl Clone for AlignmentWindow
Source§fn clone(&self) -> AlignmentWindow
fn clone(&self) -> AlignmentWindow
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 AlignmentWindow
Source§impl Debug for AlignmentWindow
impl Debug for AlignmentWindow
Source§impl Default for AlignmentWindow
impl Default for AlignmentWindow
Source§fn default() -> AlignmentWindow
fn default() -> AlignmentWindow
Returns the “default value” for a type. Read more
impl Eq for AlignmentWindow
Source§impl PartialEq for AlignmentWindow
impl PartialEq for AlignmentWindow
impl StructuralPartialEq for AlignmentWindow
Auto Trait Implementations§
impl Freeze for AlignmentWindow
impl RefUnwindSafe for AlignmentWindow
impl Send for AlignmentWindow
impl Sync for AlignmentWindow
impl Unpin for AlignmentWindow
impl UnsafeUnpin for AlignmentWindow
impl UnwindSafe for AlignmentWindow
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