Struct CouplingRow
pub struct CouplingRow {
pub entity_a: String,
pub entity_b: String,
pub shared: u32,
pub revs_a: u32,
pub revs_b: u32,
pub average_revs: u32,
pub degree: f64,
pub fisher_p: f64,
}Expand description
A single coupling pair produced by run_coupling.
Fields§
§entity_a: StringLexicographically smaller path of the pair (canonical ordering).
entity_b: StringLexicographically larger path of the pair.
Number of commits in which both files were changed together.
revs_a: u32Total commits that touched entity_a.
revs_b: u32Total commits that touched entity_b.
average_revs: u32Average of revs_a and revs_b (integer arithmetic).
degree: f64Coupling degree: 100.0 * shared / average_revs.
fisher_p: f64Two-tailed Fisher exact p-value for the 2×2 contingency table.
Trait Implementations§
§impl Clone for CouplingRow
impl Clone for CouplingRow
§fn clone(&self) -> CouplingRow
fn clone(&self) -> CouplingRow
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 more§impl Debug for CouplingRow
impl Debug for CouplingRow
§impl<'de> Deserialize<'de> for CouplingRow
impl<'de> Deserialize<'de> for CouplingRow
§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Serialize for CouplingRow
impl Serialize for CouplingRow
Auto Trait Implementations§
impl Freeze for CouplingRow
impl RefUnwindSafe for CouplingRow
impl Send for CouplingRow
impl Sync for CouplingRow
impl Unpin for CouplingRow
impl UnsafeUnpin for CouplingRow
impl UnwindSafe for CouplingRow
Blanket Implementations§
impl<T> Allocation for T
impl<T> Allocation for T
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more