pub struct LocalAlignment {
pub a_aligned: Vec<Option<usize>>,
pub b_aligned: Vec<Option<usize>>,
pub score: i32,
pub start_a: usize,
pub start_b: usize,
pub end_a: usize,
pub end_b: usize,
}Expand description
Local alignment result: aligned slices + score + start indices.
Fields§
§a_aligned: Vec<Option<usize>>§b_aligned: Vec<Option<usize>>§score: i32§start_a: usize§start_b: usize§end_a: usize§end_b: usizeTrait Implementations§
Source§impl Clone for LocalAlignment
impl Clone for LocalAlignment
Source§fn clone(&self) -> LocalAlignment
fn clone(&self) -> LocalAlignment
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 moreAuto Trait Implementations§
impl Freeze for LocalAlignment
impl RefUnwindSafe for LocalAlignment
impl Send for LocalAlignment
impl Sync for LocalAlignment
impl Unpin for LocalAlignment
impl UnsafeUnpin for LocalAlignment
impl UnwindSafe for LocalAlignment
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