pub struct CouplingEntry {
pub key: String,
pub name: String,
pub fan_in: u32,
pub fan_out: u32,
}Expand description
One node in the _Home overview’s directed-coupling table.
Fields§
§key: StringThe node key, for the wikilink.
name: StringThe symbol name.
fan_in: u32Distinct callers.
fan_out: u32Distinct callees.
Trait Implementations§
Source§impl Clone for CouplingEntry
impl Clone for CouplingEntry
Source§fn clone(&self) -> CouplingEntry
fn clone(&self) -> CouplingEntry
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 moreAuto Trait Implementations§
impl Freeze for CouplingEntry
impl RefUnwindSafe for CouplingEntry
impl Send for CouplingEntry
impl Sync for CouplingEntry
impl Unpin for CouplingEntry
impl UnsafeUnpin for CouplingEntry
impl UnwindSafe for CouplingEntry
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