pub struct EnvelopeMonitorReport {
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 b_t: f64,
pub status: EnvelopeStatus,
pub b_t_bounds_e_t: bool,
pub theorem_failure_claimed: bool,
pub convergence_claimed: bool,
}Expand description
Value-bearing report for one envelope update.
Fields§
§tick_id: u64§previous_b_t: f64§alpha_t: f64§e_t: f64§delta_t: f64§kappa_t: f64§b_t: f64§status: EnvelopeStatus§b_t_bounds_e_t: bool§theorem_failure_claimed: bool§convergence_claimed: boolTrait Implementations§
Source§impl Clone for EnvelopeMonitorReport
impl Clone for EnvelopeMonitorReport
Source§fn clone(&self) -> EnvelopeMonitorReport
fn clone(&self) -> EnvelopeMonitorReport
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 EnvelopeMonitorReport
Source§impl Debug for EnvelopeMonitorReport
impl Debug for EnvelopeMonitorReport
Source§impl PartialEq for EnvelopeMonitorReport
impl PartialEq for EnvelopeMonitorReport
Source§fn eq(&self, other: &EnvelopeMonitorReport) -> bool
fn eq(&self, other: &EnvelopeMonitorReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EnvelopeMonitorReport
Auto Trait Implementations§
impl Freeze for EnvelopeMonitorReport
impl RefUnwindSafe for EnvelopeMonitorReport
impl Send for EnvelopeMonitorReport
impl Sync for EnvelopeMonitorReport
impl Unpin for EnvelopeMonitorReport
impl UnsafeUnpin for EnvelopeMonitorReport
impl UnwindSafe for EnvelopeMonitorReport
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