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) -> impl DoubleEndedIterator<Item = &Name> + Send
fn iter_segments(&self) -> impl DoubleEndedIterator<Item = &Name> + Send
Returns a double-sided iterator over the segments in this path.
Source§impl IterablePath for Name
impl IterablePath for Name
Source§fn iter_segments(&self) -> impl DoubleEndedIterator<Item = &Name> + Send
fn iter_segments(&self) -> impl DoubleEndedIterator<Item = &Name> + Send
Returns a double-sided iterator over the segments in this path.