pub trait Status { // Required method fn update(&self, status: &str); }
Trait for observing status updates.
Update the observer with the provided status.
status