#[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
Auto Trait Implementations
impl RefUnwindSafe for LLVMVerifierFailureAction
impl Send for LLVMVerifierFailureAction
impl Sync for LLVMVerifierFailureAction
impl Unpin for LLVMVerifierFailureAction
impl UnwindSafe for LLVMVerifierFailureAction
Blanket Implementations
Mutably borrows from an owned value. Read more