pub struct RegimeTransition {
pub frame_id: u64,
pub from_regime: DiffRegime,
pub to_regime: DiffRegime,
pub trigger: String,
pub confidence: f64,
}Expand description
A regime transition event.
Fields§
§frame_id: u64Frame where the transition occurred.
from_regime: DiffRegimePrevious regime.
to_regime: DiffRegimeNew regime.
trigger: StringHuman-readable trigger explanation.
confidence: f64Confidence at the point of transition.
Implementations§
Trait Implementations§
Source§impl Clone for RegimeTransition
impl Clone for RegimeTransition
Source§fn clone(&self) -> RegimeTransition
fn clone(&self) -> RegimeTransition
Returns a duplicate of the value. Read more
1.0.0 · 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 RegimeTransition
impl RefUnwindSafe for RegimeTransition
impl Send for RegimeTransition
impl Sync for RegimeTransition
impl Unpin for RegimeTransition
impl UnsafeUnpin for RegimeTransition
impl UnwindSafe for RegimeTransition
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