pub struct RealClosureAdvancedStats {
pub sign_determinations: u64,
pub comparisons: u64,
pub thom_encodings: u64,
pub refinements: u64,
}Expand description
Statistics for advanced real closure operations.
Fields§
§sign_determinations: u64Sign determinations.
comparisons: u64Comparisons performed.
thom_encodings: u64Thom encodings computed.
refinements: u64Interval refinements.
Trait Implementations§
Source§impl Clone for RealClosureAdvancedStats
impl Clone for RealClosureAdvancedStats
Source§fn clone(&self) -> RealClosureAdvancedStats
fn clone(&self) -> RealClosureAdvancedStats
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 moreSource§impl Debug for RealClosureAdvancedStats
impl Debug for RealClosureAdvancedStats
Source§impl Default for RealClosureAdvancedStats
impl Default for RealClosureAdvancedStats
Source§fn default() -> RealClosureAdvancedStats
fn default() -> RealClosureAdvancedStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RealClosureAdvancedStats
impl RefUnwindSafe for RealClosureAdvancedStats
impl Send for RealClosureAdvancedStats
impl Sync for RealClosureAdvancedStats
impl Unpin for RealClosureAdvancedStats
impl UnsafeUnpin for RealClosureAdvancedStats
impl UnwindSafe for RealClosureAdvancedStats
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