pub struct LpaResult {
pub membership: Vec<u32>,
pub nb_clusters: u32,
}Expand description
Result of a label-propagation run.
Fields§
§membership: Vec<u32>Length-vcount vector of compacted community labels in 0..k.
nb_clusters: u32Number of distinct communities (k).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LpaResult
impl RefUnwindSafe for LpaResult
impl Send for LpaResult
impl Sync for LpaResult
impl Unpin for LpaResult
impl UnsafeUnpin for LpaResult
impl UnwindSafe for LpaResult
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