pub struct CouplingOptions {
pub min_cochanges: usize,
pub min_strength: f32,
pub limit: usize,
}Expand description
Options for coupling detection.
Fields§
§min_cochanges: usizeMinimum number of co-changes to consider a coupling (default 3).
min_strength: f32Minimum coupling strength to report (default 0.5).
limit: usizeMaximum number of couplings to return (0 = unlimited).
Trait Implementations§
Source§impl Clone for CouplingOptions
impl Clone for CouplingOptions
Source§fn clone(&self) -> CouplingOptions
fn clone(&self) -> CouplingOptions
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 CouplingOptions
impl Debug for CouplingOptions
Auto Trait Implementations§
impl Freeze for CouplingOptions
impl RefUnwindSafe for CouplingOptions
impl Send for CouplingOptions
impl Sync for CouplingOptions
impl Unpin for CouplingOptions
impl UnsafeUnpin for CouplingOptions
impl UnwindSafe for CouplingOptions
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