pub trait StallProvider:
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.