pub trait NamespaceName: Named { // Required method fn namespace(&self) -> Cow<'_, str>; // Provided method fn full_name(&self) -> Cow<'_, str> { ... } }
Trait for namespacing names.
Returns the namespace of the name.
Returns the fully qualified name, including the namespace.