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