pub struct EnvelopeMonitorTick {
pub tick_id: u64,
pub previous_b_t: f64,
pub alpha_t: f64,
pub e_t: f64,
pub delta_t: f64,
pub kappa_t: f64,
pub monitored_assumptions_hold: bool,
}Expand description
Inputs for one C-1 envelope monitor update.
Fields§
§tick_id: u64§previous_b_t: f64§alpha_t: f64§e_t: f64§delta_t: f64§kappa_t: f64§monitored_assumptions_hold: boolTrait Implementations§
Source§impl Clone for EnvelopeMonitorTick
impl Clone for EnvelopeMonitorTick
Source§fn clone(&self) -> EnvelopeMonitorTick
fn clone(&self) -> EnvelopeMonitorTick
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 moreimpl Copy for EnvelopeMonitorTick
Source§impl Debug for EnvelopeMonitorTick
impl Debug for EnvelopeMonitorTick
Source§impl PartialEq for EnvelopeMonitorTick
impl PartialEq for EnvelopeMonitorTick
Source§fn eq(&self, other: &EnvelopeMonitorTick) -> bool
fn eq(&self, other: &EnvelopeMonitorTick) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EnvelopeMonitorTick
Auto Trait Implementations§
impl Freeze for EnvelopeMonitorTick
impl RefUnwindSafe for EnvelopeMonitorTick
impl Send for EnvelopeMonitorTick
impl Sync for EnvelopeMonitorTick
impl Unpin for EnvelopeMonitorTick
impl UnsafeUnpin for EnvelopeMonitorTick
impl UnwindSafe for EnvelopeMonitorTick
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