pub struct Alignment {
pub a_aligned: Vec<Option<usize>>,
pub b_aligned: Vec<Option<usize>>,
pub score: i32,
}Expand description
Aligned pair: each position is Some(idx) for sequence character or None for a gap.
Fields§
§a_aligned: Vec<Option<usize>>§b_aligned: Vec<Option<usize>>§score: i32Trait Implementations§
Auto Trait Implementations§
impl Freeze for Alignment
impl RefUnwindSafe for Alignment
impl Send for Alignment
impl Sync for Alignment
impl Unpin for Alignment
impl UnsafeUnpin for Alignment
impl UnwindSafe for Alignment
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