pub struct SaScoringParams {
pub ca_sm: CaScoreMat,
pub opening_gap_penalty: SaScore,
pub extending_gap_penalty: SaScore,
}Fields§
§ca_sm: CaScoreMat§opening_gap_penalty: SaScore§extending_gap_penalty: SaScoreImplementations§
Source§impl SaScoringParams
impl SaScoringParams
pub fn new( ca_sm: &CaScoreMat, opening_gap_penalty: SaScore, extending_gap_penalty: SaScore, ) -> SaScoringParams
Trait Implementations§
Source§impl Clone for SaScoringParams
impl Clone for SaScoringParams
Source§fn clone(&self) -> SaScoringParams
fn clone(&self) -> SaScoringParams
Returns a duplicate of the value. Read more
1.0.0 · 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 SaScoringParams
impl RefUnwindSafe for SaScoringParams
impl Send for SaScoringParams
impl Sync for SaScoringParams
impl Unpin for SaScoringParams
impl UnwindSafe for SaScoringParams
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