#[repr(C)]
pub enum llvm_lto_status_t {
LLVM_LTO_UNKNOWN,
LLVM_LTO_OPT_SUCCESS,
LLVM_LTO_READ_SUCCESS,
LLVM_LTO_READ_FAILURE,
LLVM_LTO_WRITE_FAILURE,
LLVM_LTO_NO_TARGET,
LLVM_LTO_NO_WORK,
LLVM_LTO_MODULE_MERGE_FAILURE,
LLVM_LTO_ASM_FAILURE,
LLVM_LTO_NULL_OBJECT,
}
Variants
LLVM_LTO_UNKNOWN
LLVM_LTO_OPT_SUCCESS
LLVM_LTO_READ_SUCCESS
LLVM_LTO_READ_FAILURE
LLVM_LTO_WRITE_FAILURE
LLVM_LTO_NO_TARGET
LLVM_LTO_NO_WORK
LLVM_LTO_MODULE_MERGE_FAILURE
LLVM_LTO_ASM_FAILURE
LLVM_LTO_NULL_OBJECT
Trait Implementations
sourceimpl Clone for llvm_lto_status_t
impl Clone for llvm_lto_status_t
sourcefn clone(&self) -> llvm_lto_status_t
fn clone(&self) -> llvm_lto_status_t
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 moresourceimpl Debug for llvm_lto_status_t
impl Debug for llvm_lto_status_t
sourceimpl PartialEq<llvm_lto_status_t> for llvm_lto_status_t
impl PartialEq<llvm_lto_status_t> for llvm_lto_status_t
sourcefn eq(&self, other: &llvm_lto_status_t) -> bool
fn eq(&self, other: &llvm_lto_status_t) -> bool
impl Copy for llvm_lto_status_t
impl StructuralPartialEq for llvm_lto_status_t
Auto Trait Implementations
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
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