pub struct PhaseTransition {
pub step: usize,
pub description: String,
pub fiedler_before: f64,
pub fiedler_after: f64,
}Expand description
A detected phase transition in the fleet.
Fields§
§step: usizeStep at which the transition occurred.
description: StringDescription of the transition.
fiedler_before: f64Fiedler value before the transition.
fiedler_after: f64Fiedler value after the transition.
Trait Implementations§
Source§impl Clone for PhaseTransition
impl Clone for PhaseTransition
Source§fn clone(&self) -> PhaseTransition
fn clone(&self) -> PhaseTransition
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 moreAuto Trait Implementations§
impl Freeze for PhaseTransition
impl RefUnwindSafe for PhaseTransition
impl Send for PhaseTransition
impl Sync for PhaseTransition
impl Unpin for PhaseTransition
impl UnsafeUnpin for PhaseTransition
impl UnwindSafe for PhaseTransition
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