pub trait PhaseExt {
const BOOTSTRAP: Phase;
const SQUAD: Phase;
const HIERARCHICAL: Phase;
// Required method
fn as_str(&self) -> &'static str;
}Expand description
Extension trait for Phase enum
Required Associated Constants§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.