Enum llvm_sys::target_machine::LLVMCodeModel
source · #[repr(C)]pub enum LLVMCodeModel {
LLVMCodeModelDefault = 0,
LLVMCodeModelJITDefault = 1,
LLVMCodeModelTiny = 2,
LLVMCodeModelSmall = 3,
LLVMCodeModelKernel = 4,
LLVMCodeModelMedium = 5,
LLVMCodeModelLarge = 6,
}
Variants§
LLVMCodeModelDefault = 0
LLVMCodeModelJITDefault = 1
LLVMCodeModelTiny = 2
LLVMCodeModelSmall = 3
LLVMCodeModelKernel = 4
LLVMCodeModelMedium = 5
LLVMCodeModelLarge = 6
Trait Implementations§
source§impl Clone for LLVMCodeModel
impl Clone for LLVMCodeModel
source§fn clone(&self) -> LLVMCodeModel
fn clone(&self) -> LLVMCodeModel
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 LLVMCodeModel
impl Debug for LLVMCodeModel
source§impl PartialEq for LLVMCodeModel
impl PartialEq for LLVMCodeModel
source§fn eq(&self, other: &LLVMCodeModel) -> bool
fn eq(&self, other: &LLVMCodeModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for LLVMCodeModel
impl StructuralPartialEq for LLVMCodeModel
Auto Trait Implementations§
impl Freeze for LLVMCodeModel
impl RefUnwindSafe for LLVMCodeModel
impl Send for LLVMCodeModel
impl Sync for LLVMCodeModel
impl Unpin for LLVMCodeModel
impl UnwindSafe for LLVMCodeModel
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