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