#[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
None
Less
Default
Aggressive
Trait Implementations
sourceimpl Clone for OptimizationLevel
impl Clone for OptimizationLevel
sourcefn clone(&self) -> OptimizationLevel
fn clone(&self) -> OptimizationLevel
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for OptimizationLevel
impl Debug for OptimizationLevel
sourceimpl Default for OptimizationLevel
impl Default for OptimizationLevel
sourceimpl PartialEq<OptimizationLevel> for OptimizationLevel
impl PartialEq<OptimizationLevel> for OptimizationLevel
sourcefn 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 ==. Read more
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more