Struct egg::Report [−][src]
#[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: StopReasonegraph_nodes: usizeegraph_classes: usizememo_size: usizerebuilds: usizetotal_time: f64search_time: f64apply_time: f64rebuild_time: f64Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Report
impl UnwindSafe for Report
Blanket Implementations
Mutably borrows from an owned value. Read more
