pub struct HistogramDiffConfig {
pub max_anchor_freq: usize,
pub context_lines: usize,
}Expand description
Configuration for histogram diff.
Fields§
§max_anchor_freq: usizeMaximum line frequency to consider as an anchor candidate.
context_lines: usizeTrait Implementations§
Source§impl Clone for HistogramDiffConfig
impl Clone for HistogramDiffConfig
Source§fn clone(&self) -> HistogramDiffConfig
fn clone(&self) -> HistogramDiffConfig
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 HistogramDiffConfig
impl Debug for HistogramDiffConfig
Auto Trait Implementations§
impl Freeze for HistogramDiffConfig
impl RefUnwindSafe for HistogramDiffConfig
impl Send for HistogramDiffConfig
impl Sync for HistogramDiffConfig
impl Unpin for HistogramDiffConfig
impl UnsafeUnpin for HistogramDiffConfig
impl UnwindSafe for HistogramDiffConfig
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