pub trait Statuable {
// Required methods
fn get_status(&self) -> Option<Status>;
fn set_status(&mut self, status: Option<Status>);
}Expand description
In pipelight, many are the structs and enum substructs that have a status. This trait is to query the deepenth status in a more standardize way.