pub enum CouplingType {
CoChange,
SharedBugs,
ExplicitEdge,
}Expand description
The type of coupling detected.
Variants§
CoChange
Files change together in the same commits.
Files share similar bug patterns.
ExplicitEdge
An explicit graph edge already exists between units in these files.
Trait Implementations§
Source§impl Clone for CouplingType
impl Clone for CouplingType
Source§fn clone(&self) -> CouplingType
fn clone(&self) -> CouplingType
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 CouplingType
impl Debug for CouplingType
Source§impl<'de> Deserialize<'de> for CouplingType
impl<'de> Deserialize<'de> for CouplingType
Source§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
Source§impl Display for CouplingType
impl Display for CouplingType
Source§impl Hash for CouplingType
impl Hash for CouplingType
Source§impl PartialEq for CouplingType
impl PartialEq for CouplingType
Source§impl Serialize for CouplingType
impl Serialize for CouplingType
impl Eq for CouplingType
impl StructuralPartialEq for CouplingType
Auto Trait Implementations§
impl Freeze for CouplingType
impl RefUnwindSafe for CouplingType
impl Send for CouplingType
impl Sync for CouplingType
impl Unpin for CouplingType
impl UnsafeUnpin for CouplingType
impl UnwindSafe for CouplingType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.