pub struct RawTracePointTestRunResult {
pub return_value: u32,
}Expand description
Result of running a RawTracePoint program test via BPF_PROG_TEST_RUN.
Only return_value is returned by the kernel; duration, data_size_out,
and ctx_size_out are omitted.
Fields§
§return_value: u32Return value from the program.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RawTracePointTestRunResult
impl RefUnwindSafe for RawTracePointTestRunResult
impl Send for RawTracePointTestRunResult
impl Sync for RawTracePointTestRunResult
impl Unpin for RawTracePointTestRunResult
impl UnsafeUnpin for RawTracePointTestRunResult
impl UnwindSafe for RawTracePointTestRunResult
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