pub trait StallProvider:
Clone
+ Sync
+ Send
+ 'static {
// Required method
fn get_stall_info(&self) -> Result<MemoryStallMetrics, Error>;
}
Required Methods§
Sourcefn get_stall_info(&self) -> Result<MemoryStallMetrics, Error>
fn get_stall_info(&self) -> Result<MemoryStallMetrics, Error>
Return the current memory stall values from the kernel.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.