pub struct WccConfig {
pub chunk_size: usize,
pub neighbor_rounds: usize,
pub sampling_size: usize,
}Fields§
§chunk_size: usizeNumber of nodes to be processed in batch by a single thread.
neighbor_rounds: usizeNumber of relationships of each node to sample during subgraph linking.
sampling_size: usizeNumber of samples to draw from the DSS to find the largest component.
Implementations§
Trait Implementations§
impl Copy for WccConfig
Auto Trait Implementations§
impl Freeze for WccConfig
impl RefUnwindSafe for WccConfig
impl Send for WccConfig
impl Sync for WccConfig
impl Unpin for WccConfig
impl UnsafeUnpin for WccConfig
impl UnwindSafe for WccConfig
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more