pub enum LLVMValueKind {
REGISTER(LLVMString),
INTEGER(i128),
UNSIGNEDINTEGER(u128),
}
Expand description
LLVMValue の種類
Variants§
Trait Implementations§
Source§impl Clone for LLVMValueKind
impl Clone for LLVMValueKind
Source§fn clone(&self) -> LLVMValueKind
fn clone(&self) -> LLVMValueKind
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 Hash for LLVMValueKind
impl Hash for LLVMValueKind
Source§impl Ord for LLVMValueKind
impl Ord for LLVMValueKind
Source§fn cmp(&self, other: &LLVMValueKind) -> Ordering
fn cmp(&self, other: &LLVMValueKind) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for LLVMValueKind
impl PartialEq for LLVMValueKind
Source§impl PartialOrd for LLVMValueKind
impl PartialOrd for LLVMValueKind
impl Eq for LLVMValueKind
impl StructuralPartialEq for LLVMValueKind
Auto Trait Implementations§
impl Freeze for LLVMValueKind
impl RefUnwindSafe for LLVMValueKind
impl Send for LLVMValueKind
impl Sync for LLVMValueKind
impl Unpin for LLVMValueKind
impl UnwindSafe for LLVMValueKind
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