pub type Name = BoundedName<MAX_NAME_LENGTH>;
Expand description
A name that can refer to a component, collection, or other entity in the
Component Manifest. Its length is bounded to MAX_NAME_LENGTH
.
Aliased Type§
struct Name(/* private fields */);
Trait Implementations§
source§impl IterablePath for Name
impl IterablePath for Name
source§fn iter_segments(
&self,
) -> Box<dyn DoubleEndedIterator<Item = &Name> + Send + '_>
fn iter_segments( &self, ) -> Box<dyn DoubleEndedIterator<Item = &Name> + Send + '_>
Returns a double-sided iterator over the segments in this path.