pub struct FunctionCall<'i> { /* private fields */ }Expand description
struct representation of CALL instruction
Implementations§
Trait Implementations§
Source§impl<'i> Instruction for FunctionCall<'i>
impl<'i> Instruction for FunctionCall<'i>
Source§fn opt_code_byte(&self) -> u8
fn opt_code_byte(&self) -> u8
returns instruction opt code
Source§fn get_insn_mut(&mut self) -> &mut Insn
fn get_insn_mut(&mut self) -> &mut Insn
get mutable
ebpf::Insn structAuto Trait Implementations§
impl<'i> Freeze for FunctionCall<'i>
impl<'i> RefUnwindSafe for FunctionCall<'i>
impl<'i> Send for FunctionCall<'i>
impl<'i> Sync for FunctionCall<'i>
impl<'i> Unpin for FunctionCall<'i>
impl<'i> !UnwindSafe for FunctionCall<'i>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more