#[repr(C)]pub struct SyscallExitEvent {
pub entry: SyscallEntryEvent,
pub ret: [u64; 2],
pub duration: TimeSpan,
}
Expand description
Event data for system call entry.
Fields§
§entry: SyscallEntryEvent
§ret: [u64; 2]
The return value.
duration: TimeSpan
Time spent processing system call.
Trait Implementations§
Source§impl Clone for SyscallExitEvent
impl Clone for SyscallExitEvent
Source§fn clone(&self) -> SyscallExitEvent
fn clone(&self) -> SyscallExitEvent
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 Debug for SyscallExitEvent
impl Debug for SyscallExitEvent
Source§impl TraceDataCast for SyscallExitEvent
impl TraceDataCast for SyscallExitEvent
impl Copy for SyscallExitEvent
Auto Trait Implementations§
impl Freeze for SyscallExitEvent
impl ObjSafe for SyscallExitEvent
impl RefUnwindSafe for SyscallExitEvent
impl Send for SyscallExitEvent
impl Sync for SyscallExitEvent
impl Unpin for SyscallExitEvent
impl UnwindSafe for SyscallExitEvent
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