pub struct ScoringMatrix {
pub match_score: i32,
pub mismatch: i32,
pub gap: i32,
}Expand description
Simple scoring scheme: match reward, mismatch penalty, linear gap penalty.
Fields§
§match_score: i32§mismatch: i32§gap: i32Trait Implementations§
Source§impl Clone for ScoringMatrix
impl Clone for ScoringMatrix
Source§fn clone(&self) -> ScoringMatrix
fn clone(&self) -> ScoringMatrix
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 ScoringMatrix
Source§impl Debug for ScoringMatrix
impl Debug for ScoringMatrix
Auto Trait Implementations§
impl Freeze for ScoringMatrix
impl RefUnwindSafe for ScoringMatrix
impl Send for ScoringMatrix
impl Sync for ScoringMatrix
impl Unpin for ScoringMatrix
impl UnsafeUnpin for ScoringMatrix
impl UnwindSafe for ScoringMatrix
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