pub trait Labeled { // Required method fn label(&self) -> Cow<'_, str>; }
A trait for objects that have a human-readable label.
Returns the human-readable label of the object.