#[repr(C)]
pub enum LLVMVerifierFailureAction {
LLVMAbortProcessAction,
LLVMPrintMessageAction,
LLVMReturnStatusAction,
}
Variants§
LLVMAbortProcessAction
Print to stderr and abort the process.
LLVMPrintMessageAction
Print to stderr and return 1.
LLVMReturnStatusAction
Return 1 and print nothing.
Trait Implementations§
source§impl Clone for LLVMVerifierFailureAction
impl Clone for LLVMVerifierFailureAction
source§fn clone(&self) -> LLVMVerifierFailureAction
fn clone(&self) -> LLVMVerifierFailureAction
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 more