Enum llvm_sys::LLVMTailCallKind
source · #[repr(C)]pub enum LLVMTailCallKind {
LLVMTailCallKindNone = 0,
LLVMTailCallKindTail = 1,
LLVMTailCallKindMustTail = 2,
LLVMTailCallKindNoTail = 3,
}
Expand description
Tail call kind for LLVMSetTailCallKind and LLVMGetTailCallKind.
Note that musttail
implies tail
.
Variants§
LLVMTailCallKindNone = 0
LLVMTailCallKindTail = 1
LLVMTailCallKindMustTail = 2
LLVMTailCallKindNoTail = 3
Trait Implementations§
source§impl Clone for LLVMTailCallKind
impl Clone for LLVMTailCallKind
source§fn clone(&self) -> LLVMTailCallKind
fn clone(&self) -> LLVMTailCallKind
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 LLVMTailCallKind
impl Debug for LLVMTailCallKind
source§impl PartialEq for LLVMTailCallKind
impl PartialEq for LLVMTailCallKind
source§fn eq(&self, other: &LLVMTailCallKind) -> bool
fn eq(&self, other: &LLVMTailCallKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for LLVMTailCallKind
impl StructuralPartialEq for LLVMTailCallKind
Auto Trait Implementations§
impl RefUnwindSafe for LLVMTailCallKind
impl Send for LLVMTailCallKind
impl Sync for LLVMTailCallKind
impl Unpin for LLVMTailCallKind
impl UnwindSafe for LLVMTailCallKind
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