pub enum PatternKind {
Clustering,
PhaseTransition,
Conservation,
Correlation,
}Expand description
The kind of pattern detected during cooling.
Variants§
Clustering
Tasks that cluster together in metric space.
PhaseTransition
A shift in output distribution during cooling.
Conservation
A conservation law that holds across a group of tasks.
Correlation
An unexpected correlation between seemingly unrelated tasks.
Trait Implementations§
Source§impl Clone for PatternKind
impl Clone for PatternKind
Source§fn clone(&self) -> PatternKind
fn clone(&self) -> PatternKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PatternKind
impl Debug for PatternKind
Source§impl Display for PatternKind
impl Display for PatternKind
Source§impl Hash for PatternKind
impl Hash for PatternKind
Source§impl PartialEq for PatternKind
impl PartialEq for PatternKind
Source§fn eq(&self, other: &PatternKind) -> bool
fn eq(&self, other: &PatternKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PatternKind
impl StructuralPartialEq for PatternKind
Auto Trait Implementations§
impl Freeze for PatternKind
impl RefUnwindSafe for PatternKind
impl Send for PatternKind
impl Sync for PatternKind
impl Unpin for PatternKind
impl UnsafeUnpin for PatternKind
impl UnwindSafe for PatternKind
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