pub trait ImStats {
// Required method
fn device_load(&self, fab_idx: Option<NonZero<u8>>) -> DeviceLoad;
}Expand description
Interaction-Model state threaded down to cluster handlers via
HandlerContext::im_stats.
Required Methods§
Sourcefn device_load(&self, fab_idx: Option<NonZero<u8>>) -> DeviceLoad
fn device_load(&self, fab_idx: Option<NonZero<u8>>) -> DeviceLoad
The node’s resource-utilisation metrics, for
GeneralDiagnostics::DeviceLoadStatus.
fab_idx is the fabric of the reading subject, for
CurrentSubscriptionsForFabric; pass None when no fabric is in scope.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".