pub trait Supervisable {
    fn name(&self) -> &str;
    fn health(&self) -> Health;
}

Required Methods

Implementors