pub trait Subscriber {
// Required method
fn notify(&self);
}Expand description
A trait that allows notification of a state change.
pub trait Subscriber {
// Required method
fn notify(&self);
}A trait that allows notification of a state change.