pub trait StageLabel { // Required methods fn name(&self) -> String; fn id(&self) -> Ulid; }
Trait for things that may be used to identify a system stage.
Returns the human-readable name of the label, used in error messages.
Returns a unique identifier for the stage.