#[non_exhaustive]pub struct CpuLoadSignalOptions {
pub max_used_cpu_ratio: f32,
pub sample_interval: Duration,
}Expand description
Options for periodic system CPU load sampling.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.max_used_cpu_ratio: f32Maximum used CPU fraction before the signal reports overload.
sample_interval: DurationInterval between CPU usage samples.
Trait Implementations§
Source§impl Clone for CpuLoadSignalOptions
impl Clone for CpuLoadSignalOptions
Source§fn clone(&self) -> CpuLoadSignalOptions
fn clone(&self) -> CpuLoadSignalOptions
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 CpuLoadSignalOptions
impl Debug for CpuLoadSignalOptions
Auto Trait Implementations§
impl Freeze for CpuLoadSignalOptions
impl RefUnwindSafe for CpuLoadSignalOptions
impl Send for CpuLoadSignalOptions
impl Sync for CpuLoadSignalOptions
impl Unpin for CpuLoadSignalOptions
impl UnsafeUnpin for CpuLoadSignalOptions
impl UnwindSafe for CpuLoadSignalOptions
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