pub struct MinGateNegativeGuardReport {
pub old_wrong_path: &'static str,
pub rejected: bool,
pub canonical_g_t: f64,
pub observed_g_t: f64,
pub canonical_alpha_t: f64,
pub observed_alpha_t: f64,
}Expand description
Negative-guard report for old-wrong gate paths.
Fields§
§old_wrong_path: &'static str§rejected: bool§canonical_g_t: f64§observed_g_t: f64§canonical_alpha_t: f64§observed_alpha_t: f64Trait Implementations§
Source§impl Clone for MinGateNegativeGuardReport
impl Clone for MinGateNegativeGuardReport
Source§fn clone(&self) -> MinGateNegativeGuardReport
fn clone(&self) -> MinGateNegativeGuardReport
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 MinGateNegativeGuardReport
Source§impl Debug for MinGateNegativeGuardReport
impl Debug for MinGateNegativeGuardReport
Source§impl PartialEq for MinGateNegativeGuardReport
impl PartialEq for MinGateNegativeGuardReport
Source§fn eq(&self, other: &MinGateNegativeGuardReport) -> bool
fn eq(&self, other: &MinGateNegativeGuardReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MinGateNegativeGuardReport
Auto Trait Implementations§
impl Freeze for MinGateNegativeGuardReport
impl RefUnwindSafe for MinGateNegativeGuardReport
impl Send for MinGateNegativeGuardReport
impl Sync for MinGateNegativeGuardReport
impl Unpin for MinGateNegativeGuardReport
impl UnsafeUnpin for MinGateNegativeGuardReport
impl UnwindSafe for MinGateNegativeGuardReport
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