pub struct OverlapClusterConfig {
pub interval: usize,
pub modes: Vec<OverlapClusterBuildMode>,
pub cluster_mode: ClusterMode,
pub collect_stats: bool,
pub snapshot_interval: Option<usize>,
}Fields§
§interval: usize§modes: Vec<OverlapClusterBuildMode>§cluster_mode: ClusterMode§collect_stats: bool§snapshot_interval: Option<usize>Implementations§
Source§impl OverlapClusterConfig
impl OverlapClusterConfig
pub fn max_group_size(&self) -> usize
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OverlapClusterConfig
impl RefUnwindSafe for OverlapClusterConfig
impl Send for OverlapClusterConfig
impl Sync for OverlapClusterConfig
impl Unpin for OverlapClusterConfig
impl UnsafeUnpin for OverlapClusterConfig
impl UnwindSafe for OverlapClusterConfig
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> 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