pub trait Phase: Sealed { }Expand description
A marker trait for Rocket’s launch phases.
This treat is implemented by the three phase marker types: Build,
Ignite, and Orbit, representing the three phases to launch an
instance of Rocket. This trait is sealed and cannot be implemented
outside of Rocket.
For a description of the three phases, see Rocket.