pub trait HardwareDataManager: Iterator<Item = Update> {
// Required method
fn clear(&mut self);
}
Expand description
A typed, clearable iterator that emits Update
s when iterated upon. Designed
to be maximally flexable to allow various implementations.