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: usize
The 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: f64
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Report
impl UnwindSafe for Report
Blanket Implementations
Mutably borrows from an owned value. Read more