#[non_exhaustive]pub struct Report {
pub iterations: usize,
pub stop_reason: StopReason,
pub egraph_nodes: usize,
pub egraph_classes: usize,
pub memo_size: usize,
pub rebuilds: usize,
pub total_time: f64,
pub search_time: f64,
pub apply_time: f64,
pub rebuild_time: f64,
}Expand description
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.iterations: usizeThe number of iterations this runner performed.
stop_reason: StopReason§egraph_nodes: usize§egraph_classes: usize§memo_size: usize§rebuilds: usize§total_time: f64§search_time: f64§apply_time: f64§rebuild_time: f64Trait Implementations§
Source§impl Serialize for Report
impl Serialize for Report
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for Report
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnwindSafe for Report
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