pub enum OptimizationLevel {
O0,
O1,
O2,
O3,
Os,
Oz,
}Expand description
The various possible optimization levels
Variants
O0
O1
O2
O3
Os
Oz
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 Display for OptimizationLevel
impl Display for OptimizationLevel
sourceimpl Hash for OptimizationLevel
impl Hash for OptimizationLevel
sourceimpl Ord for OptimizationLevel
impl Ord for OptimizationLevel
sourceimpl PartialOrd<OptimizationLevel> for OptimizationLevel
impl PartialOrd<OptimizationLevel> for OptimizationLevel
sourcefn partial_cmp(&self, other: &OptimizationLevel) -> Option<Ordering>
fn partial_cmp(&self, other: &OptimizationLevel) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. 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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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