pub trait Phase: Sealed { }Expand description
Marker trait for pipeline phases. Sealed: only the markers in this module implement it, so downstream crates can’t invent new phases (which would defeat the type-driven ordering).
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".