pub struct MemoryStallRate {
pub interval: MonotonicDuration,
pub rate_some: zx_duration_mono_t,
pub rate_full: zx_duration_mono_t,
}
Expand description
Holds the memory stall rate increase of the system.
Fields§
§interval: MonotonicDuration
Measurement interval of the stall rate.
rate_some: zx_duration_mono_t
Rate of memory stalls on some CPUs.
rate_full: zx_duration_mono_t
Rate of memory stalls on all CPUs.
Trait Implementations§
Source§impl Clone for MemoryStallRate
impl Clone for MemoryStallRate
Source§fn clone(&self) -> MemoryStallRate
fn clone(&self) -> MemoryStallRate
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 moreAuto Trait Implementations§
impl Freeze for MemoryStallRate
impl RefUnwindSafe for MemoryStallRate
impl Send for MemoryStallRate
impl Sync for MemoryStallRate
impl Unpin for MemoryStallRate
impl UnwindSafe for MemoryStallRate
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