pub struct GotohAlignment {
pub a_aligned: Vec<Option<usize>>,
pub b_aligned: Vec<Option<usize>>,
pub score: i32,
}Expand description
Result of Gotoh affine-gap global alignment.
Fields§
§a_aligned: Vec<Option<usize>>§b_aligned: Vec<Option<usize>>§score: i32Trait Implementations§
Source§impl Clone for GotohAlignment
impl Clone for GotohAlignment
Source§fn clone(&self) -> GotohAlignment
fn clone(&self) -> GotohAlignment
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 GotohAlignment
impl RefUnwindSafe for GotohAlignment
impl Send for GotohAlignment
impl Sync for GotohAlignment
impl Unpin for GotohAlignment
impl UnsafeUnpin for GotohAlignment
impl UnwindSafe for GotohAlignment
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