#[repr(C)]
pub union cs_bpf_op__bindgen_ty_1 {
pub reg: u8,
pub imm: u64,
pub off: u32,
pub mem: bpf_op_mem,
pub mmem: u32,
pub msh: u32,
pub ext: u32,
}
Fields§
§reg: u8
< register value for REG operand
imm: u64
< immediate value IMM operand
off: u32
< offset value, used in jump & call
mem: bpf_op_mem
< base/disp value for MEM operand
mmem: u32
< M[k] in cBPF
msh: u32
< corresponds to cBPF’s BPF_MSH mode
ext: u32
< cBPF’s extension (not eBPF)
Trait Implementations§
source§impl Clone for cs_bpf_op__bindgen_ty_1
impl Clone for cs_bpf_op__bindgen_ty_1
source§impl Debug for cs_bpf_op__bindgen_ty_1
impl Debug for cs_bpf_op__bindgen_ty_1
impl Copy for cs_bpf_op__bindgen_ty_1
Auto Trait Implementations§
impl RefUnwindSafe for cs_bpf_op__bindgen_ty_1
impl Send for cs_bpf_op__bindgen_ty_1
impl Sync for cs_bpf_op__bindgen_ty_1
impl Unpin for cs_bpf_op__bindgen_ty_1
impl UnwindSafe for cs_bpf_op__bindgen_ty_1
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