pub trait CounterOverflow<'a>: Counter<'a> {
// Required method
fn set_overflow_client(&self, client: &'a dyn OverflowClient);
}๐Deprecated:
set_overflow_client never used so moved to an independent trait. Set to be removed in future releases unless a concrete use case is raised.
Expand description
Extension trait for counters that support hardware overflow notifications.
Required Methodsยง
fn set_overflow_client(&self, client: &'a dyn OverflowClient)
๐Deprecated:
set_overflow_client never used so moved to an independent trait. Set to be removed in future releases unless a concrete use case is raised.