#[repr(C)]pub enum llvm_lto_status_t {
LLVM_LTO_UNKNOWN = 0,
LLVM_LTO_OPT_SUCCESS = 1,
LLVM_LTO_READ_SUCCESS = 2,
LLVM_LTO_READ_FAILURE = 3,
LLVM_LTO_WRITE_FAILURE = 4,
LLVM_LTO_NO_TARGET = 5,
LLVM_LTO_NO_WORK = 6,
LLVM_LTO_MODULE_MERGE_FAILURE = 7,
LLVM_LTO_ASM_FAILURE = 8,
LLVM_LTO_NULL_OBJECT = 9,
}Variants§
LLVM_LTO_UNKNOWN = 0
LLVM_LTO_OPT_SUCCESS = 1
LLVM_LTO_READ_SUCCESS = 2
LLVM_LTO_READ_FAILURE = 3
LLVM_LTO_WRITE_FAILURE = 4
LLVM_LTO_NO_TARGET = 5
LLVM_LTO_NO_WORK = 6
LLVM_LTO_MODULE_MERGE_FAILURE = 7
LLVM_LTO_ASM_FAILURE = 8
LLVM_LTO_NULL_OBJECT = 9
Trait Implementations§
Source§impl Clone for llvm_lto_status_t
impl Clone for llvm_lto_status_t
Source§fn clone(&self) -> llvm_lto_status_t
fn clone(&self) -> llvm_lto_status_t
Returns a duplicate 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 llvm_lto_status_t
impl Debug for llvm_lto_status_t
Source§impl PartialEq for llvm_lto_status_t
impl PartialEq for llvm_lto_status_t
impl Copy for llvm_lto_status_t
impl StructuralPartialEq for llvm_lto_status_t
Auto Trait Implementations§
impl Freeze for llvm_lto_status_t
impl RefUnwindSafe for llvm_lto_status_t
impl Send for llvm_lto_status_t
impl Sync for llvm_lto_status_t
impl Unpin for llvm_lto_status_t
impl UnwindSafe for llvm_lto_status_t
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