pub struct CombineParams {
pub min_overlap: usize,
pub max_overlap: usize,
pub max_mismatch_density: f32,
pub cap_mismatch_quals: bool,
pub allow_outies: bool,
pub lowercase_overhang: bool,
pub phred_offset: u8,
}Fields§
§min_overlap: usize§max_overlap: usize§max_mismatch_density: f32§cap_mismatch_quals: bool§allow_outies: bool§lowercase_overhang: bool§phred_offset: u8Implementations§
Trait Implementations§
Source§impl Clone for CombineParams
impl Clone for CombineParams
Source§fn clone(&self) -> CombineParams
fn clone(&self) -> CombineParams
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 moreSource§impl Debug for CombineParams
impl Debug for CombineParams
Auto Trait Implementations§
impl Freeze for CombineParams
impl RefUnwindSafe for CombineParams
impl Send for CombineParams
impl Sync for CombineParams
impl Unpin for CombineParams
impl UnwindSafe for CombineParams
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