pub struct SyscallDiff {
pub baseline_total: u64,
pub comparison_total: u64,
pub syscalls: Vec<SyscallStatsDiff>,
}Expand description
Diff of two syscall profiles.
Fields§
§baseline_total: u64§comparison_total: u64§syscalls: Vec<SyscallStatsDiff>Trait Implementations§
Source§impl Clone for SyscallDiff
impl Clone for SyscallDiff
Source§fn clone(&self) -> SyscallDiff
fn clone(&self) -> SyscallDiff
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 SyscallDiff
impl Debug for SyscallDiff
Source§impl<'de> Deserialize<'de> for SyscallDiff
impl<'de> Deserialize<'de> for SyscallDiff
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 SyscallDiff
impl RefUnwindSafe for SyscallDiff
impl Send for SyscallDiff
impl Sync for SyscallDiff
impl Unpin for SyscallDiff
impl UnsafeUnpin for SyscallDiff
impl UnwindSafe for SyscallDiff
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