pub struct MaximalConfig {
pub min_statements: u32,
pub max_extent_ratio: f64,
}Expand description
Tuning for region consolidation.
Fields§
§min_statements: u32Shortest run, in statements, that is still reported. Shorter regions
are dropped and counted in RegionStats::below_minimum.
max_extent_ratio: f64Largest ratio between the source lengths of a seed’s two sides before the seed is dropped as a summary-level coincidence.
Trait Implementations§
Source§impl Clone for MaximalConfig
impl Clone for MaximalConfig
Source§fn clone(&self) -> MaximalConfig
fn clone(&self) -> MaximalConfig
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 moreSource§impl Debug for MaximalConfig
impl Debug for MaximalConfig
Source§impl Default for MaximalConfig
impl Default for MaximalConfig
Source§impl PartialEq for MaximalConfig
impl PartialEq for MaximalConfig
impl StructuralPartialEq for MaximalConfig
Auto Trait Implementations§
impl Freeze for MaximalConfig
impl RefUnwindSafe for MaximalConfig
impl Send for MaximalConfig
impl Sync for MaximalConfig
impl Unpin for MaximalConfig
impl UnsafeUnpin for MaximalConfig
impl UnwindSafe for MaximalConfig
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