pub struct OptimizationReport {
pub fusion_patterns_enabled: usize,
pub constant_folding_enabled: bool,
pub dead_code_elimination_enabled: bool,
}Expand description
Optimization report.
Fields§
§fusion_patterns_enabled: usize§constant_folding_enabled: bool§dead_code_elimination_enabled: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for OptimizationReport
impl RefUnwindSafe for OptimizationReport
impl Send for OptimizationReport
impl Sync for OptimizationReport
impl Unpin for OptimizationReport
impl UnwindSafe for OptimizationReport
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