Struct lib::alignment_lib::Penalties
source · [−]Expand description
Holds penalties scores. There is no match penalty: matches do not change the score. The penalty for any gap is length * extd_pen + open_pen. The extension pen is also applied when a gap is opened. Penalties should be a positive int.
Fields
mismatch_pen: i32open_pen: i32extd_pen: i32Trait Implementations
impl Eq for Penalties
impl StructuralEq for Penalties
impl StructuralPartialEq for Penalties
Auto Trait Implementations
impl RefUnwindSafe for Penalties
impl Send for Penalties
impl Sync for Penalties
impl Unpin for Penalties
impl UnwindSafe for Penalties
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more