pub struct SyscallEvent {
pub timestamp: Timestamp,
pub pid: Pid,
pub tid: Tid,
pub syscall_id: u32,
pub duration_ns: u64,
pub return_value: i64,
pub comm: String,
}Expand description
Syscall event
Fields§
§timestamp: Timestamp§pid: Pid§tid: Tid§syscall_id: u32§duration_ns: u64§return_value: i64§comm: StringTrait Implementations§
Source§impl Clone for SyscallEvent
impl Clone for SyscallEvent
Source§fn clone(&self) -> SyscallEvent
fn clone(&self) -> SyscallEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SyscallEvent
impl Debug for SyscallEvent
Source§impl<'de> Deserialize<'de> for SyscallEvent
impl<'de> Deserialize<'de> for SyscallEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SyscallEvent
impl RefUnwindSafe for SyscallEvent
impl Send for SyscallEvent
impl Sync for SyscallEvent
impl Unpin for SyscallEvent
impl UnsafeUnpin for SyscallEvent
impl UnwindSafe for SyscallEvent
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