pub struct EnsembleStatus {
pub current_regime: MarketRegime,
pub indicator_ready: bool,
pub hmm_ready: bool,
pub agreement_rate: f64,
pub hmm_state_probs: Vec<f64>,
pub expected_duration: f64,
}Expand description
Status information for monitoring / dashboards
Fields§
§current_regime: MarketRegime§indicator_ready: bool§hmm_ready: bool§agreement_rate: f64§hmm_state_probs: Vec<f64>§expected_duration: f64Trait Implementations§
Source§impl Clone for EnsembleStatus
impl Clone for EnsembleStatus
Source§fn clone(&self) -> EnsembleStatus
fn clone(&self) -> EnsembleStatus
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 moreSource§impl Debug for EnsembleStatus
impl Debug for EnsembleStatus
Auto Trait Implementations§
impl Freeze for EnsembleStatus
impl RefUnwindSafe for EnsembleStatus
impl Send for EnsembleStatus
impl Sync for EnsembleStatus
impl Unpin for EnsembleStatus
impl UnsafeUnpin for EnsembleStatus
impl UnwindSafe for EnsembleStatus
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