pub struct Timing {
pub load: f64,
pub check: f64,
pub bind: f64,
pub evaluate: f64,
pub total: f64,
pub recomputed: Option<usize>,
pub slots: Option<usize>,
}Fields§
§load: f64§check: f64§bind: f64§evaluate: f64§total: f64§recomputed: Option<usize>the incremental step: how many slots were recomputed, and out of how many (a full run: None)
slots: Option<usize>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Timing
impl RefUnwindSafe for Timing
impl Send for Timing
impl Sync for Timing
impl Unpin for Timing
impl UnsafeUnpin for Timing
impl UnwindSafe for Timing
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