pub trait PhaseMarker {
// Required method
fn phase_name() -> &'static str;
}Required Methods§
Sourcefn phase_name() -> &'static str
fn phase_name() -> &'static str
Short name used in artifact directory names (e.g., “pre”, “post”).
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".