Enum capstone_sys::bpf_reg
source · #[repr(u32)]pub enum bpf_reg {
Show 15 variants
BPF_REG_INVALID = 0,
BPF_REG_A = 1,
BPF_REG_X = 2,
BPF_REG_R0 = 3,
BPF_REG_R1 = 4,
BPF_REG_R2 = 5,
BPF_REG_R3 = 6,
BPF_REG_R4 = 7,
BPF_REG_R5 = 8,
BPF_REG_R6 = 9,
BPF_REG_R7 = 10,
BPF_REG_R8 = 11,
BPF_REG_R9 = 12,
BPF_REG_R10 = 13,
BPF_REG_ENDING = 14,
}
Expand description
BPF registers
Variants§
BPF_REG_INVALID = 0
BPF_REG_A = 1
BPF_REG_X = 2
BPF_REG_R0 = 3
BPF_REG_R1 = 4
BPF_REG_R2 = 5
BPF_REG_R3 = 6
BPF_REG_R4 = 7
BPF_REG_R5 = 8
BPF_REG_R6 = 9
BPF_REG_R7 = 10
BPF_REG_R8 = 11
BPF_REG_R9 = 12
BPF_REG_R10 = 13
BPF_REG_ENDING = 14
Trait Implementations§
source§impl PartialEq for bpf_reg
impl PartialEq for bpf_reg
impl Copy for bpf_reg
impl Eq for bpf_reg
impl StructuralPartialEq for bpf_reg
Auto Trait Implementations§
impl RefUnwindSafe for bpf_reg
impl Send for bpf_reg
impl Sync for bpf_reg
impl Unpin for bpf_reg
impl UnwindSafe for bpf_reg
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