pub struct OverlapClusterConfig {
pub interval: usize,
pub mode: OverlapClusterBuildMode,
pub cluster_mode: ClusterMode,
pub update_mode: OverlapUpdateMode,
pub collect_csd: bool,
pub collect_top_clusters: bool,
}Fields§
§interval: usize§mode: OverlapClusterBuildMode§cluster_mode: ClusterMode§update_mode: OverlapUpdateMode§collect_csd: bool§collect_top_clusters: boolTrait Implementations§
Source§impl Debug for OverlapClusterConfig
impl Debug for OverlapClusterConfig
Source§impl Validate for OverlapClusterConfig
impl Validate for OverlapClusterConfig
Source§impl<'v_a> ValidateArgs<'v_a> for OverlapClusterConfig
impl<'v_a> ValidateArgs<'v_a> for OverlapClusterConfig
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