pub struct SyscallProfile {
pub start_time: u64,
pub end_time: u64,
pub syscalls: HashMap<u32, SyscallStats>,
pub total_events: u64,
}Expand description
Profile of system calls
Fields§
§start_time: u64§end_time: u64§syscalls: HashMap<u32, SyscallStats>§total_events: u64Implementations§
Trait Implementations§
Source§impl Clone for SyscallProfile
impl Clone for SyscallProfile
Source§fn clone(&self) -> SyscallProfile
fn clone(&self) -> SyscallProfile
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 SyscallProfile
impl Debug for SyscallProfile
Source§impl<'de> Deserialize<'de> for SyscallProfile
impl<'de> Deserialize<'de> for SyscallProfile
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 SyscallProfile
impl RefUnwindSafe for SyscallProfile
impl Send for SyscallProfile
impl Sync for SyscallProfile
impl Unpin for SyscallProfile
impl UnsafeUnpin for SyscallProfile
impl UnwindSafe for SyscallProfile
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