pub trait Phased {
    fn phase(this: &Self) -> Phase;
}
Expand description

Trait for objects that know in which phase they are.

Required Methods

return the current phase

Implementors