Enum inkwell::OptimizationLevel
source · #[repr(u32)]
pub enum OptimizationLevel {
None,
Less,
Default,
Aggressive,
}
Expand description
Defines the optimization level used to compile a Module
.
Remarks
See also: https://llvm.org/doxygen/CodeGen_8h_source.html
Variants§
Trait Implementations§
source§impl Clone for OptimizationLevel
impl Clone for OptimizationLevel
source§fn clone(&self) -> OptimizationLevel
fn clone(&self) -> OptimizationLevel
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for OptimizationLevel
impl Debug for OptimizationLevel
source§impl Default for OptimizationLevel
impl Default for OptimizationLevel
source§impl PartialEq<OptimizationLevel> for OptimizationLevel
impl PartialEq<OptimizationLevel> for OptimizationLevel
source§fn eq(&self, other: &OptimizationLevel) -> bool
fn eq(&self, other: &OptimizationLevel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.