#[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 the C++ API documentation: llvm::CodeGenOpt.
Variants§
Trait Implementations§
Source§impl Clone for OptimizationLevel
impl Clone for OptimizationLevel
Source§fn clone(&self) -> OptimizationLevel
fn clone(&self) -> OptimizationLevel
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 From<OptimizationLevel> for LLVMCodeGenOptLevel
impl From<OptimizationLevel> for LLVMCodeGenOptLevel
Source§fn from(value: OptimizationLevel) -> Self
fn from(value: OptimizationLevel) -> Self
Converts to this type from the input type.
Source§impl PartialEq for OptimizationLevel
impl PartialEq for OptimizationLevel
Source§fn eq(&self, other: &OptimizationLevel) -> bool
fn eq(&self, other: &OptimizationLevel) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for OptimizationLevel
impl Eq for OptimizationLevel
impl StructuralPartialEq for OptimizationLevel
Auto Trait Implementations§
impl Freeze for OptimizationLevel
impl RefUnwindSafe for OptimizationLevel
impl Send for OptimizationLevel
impl Sync for OptimizationLevel
impl Unpin for OptimizationLevel
impl UnsafeUnpin 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