Enum inkwell::OptimizationLevel
source · #[repr(u32)]pub enum OptimizationLevel {
None = 0,
Less = 1,
Default = 2,
Aggressive = 3,
}
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 for OptimizationLevel
impl PartialEq 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 ==
.impl Copy for OptimizationLevel
impl Eq for OptimizationLevel
impl StructuralEq for OptimizationLevel
impl StructuralPartialEq for OptimizationLevel
Auto Trait Implementations§
impl RefUnwindSafe for OptimizationLevel
impl Send for OptimizationLevel
impl Sync for OptimizationLevel
impl Unpin for OptimizationLevel
impl UnwindSafe for OptimizationLevel
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