#[non_exhaustive]pub struct MemoryLoadSignalOptions {
pub max_used_memory_ratio: f32,
pub memory_bytes: Option<u64>,
pub sample_interval: Duration,
}Expand description
Options for periodic system memory 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_memory_ratio: f32Maximum used memory fraction before the signal reports overload.
memory_bytes: Option<u64>Optional byte budget used instead of total system memory.
sample_interval: DurationInterval between memory usage samples. Values below 1 ms are clamped to 1 ms.
Trait Implementations§
Source§impl Clone for MemoryLoadSignalOptions
impl Clone for MemoryLoadSignalOptions
Source§fn clone(&self) -> MemoryLoadSignalOptions
fn clone(&self) -> MemoryLoadSignalOptions
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 MemoryLoadSignalOptions
impl Debug for MemoryLoadSignalOptions
Auto Trait Implementations§
impl Freeze for MemoryLoadSignalOptions
impl RefUnwindSafe for MemoryLoadSignalOptions
impl Send for MemoryLoadSignalOptions
impl Sync for MemoryLoadSignalOptions
impl Unpin for MemoryLoadSignalOptions
impl UnsafeUnpin for MemoryLoadSignalOptions
impl UnwindSafe for MemoryLoadSignalOptions
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