pub struct Coupling {
pub fan_in: u32,
pub fan_out: u32,
pub fan_out_external: u32,
pub hk: f64,
}Fields§
§fan_in: u32§fan_out: u32§fan_out_external: u32Outgoing edges to external libraries (depth-1 deps). Tracked separately so it is visible without inflating HK, which uses internal coupling only.
hk: f64Trait Implementations§
Source§impl<'de> Deserialize<'de> for Coupling
impl<'de> Deserialize<'de> for Coupling
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
Auto Trait Implementations§
impl Freeze for Coupling
impl RefUnwindSafe for Coupling
impl Send for Coupling
impl Sync for Coupling
impl Unpin for Coupling
impl UnsafeUnpin for Coupling
impl UnwindSafe for Coupling
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