pub struct LccResult {
pub coefficients: HashMap<NodeId, f64>,
pub average: f64,
}Expand description
Result of LCC computation
Fields§
§coefficients: HashMap<NodeId, f64>Clustering coefficient per node
average: f64Global average clustering coefficient
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LccResult
impl RefUnwindSafe for LccResult
impl Send for LccResult
impl Sync for LccResult
impl Unpin for LccResult
impl UnsafeUnpin for LccResult
impl UnwindSafe for LccResult
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