Skip to main content

CounterOverflow

Trait CounterOverflow 

Source
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ยง

Source

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.

Implementorsยง