pub trait IdPath {
// Required method
fn iter(&self) -> impl Iterator<Item = LabelNameId>;
}Expand description
An ordered collection of LabelNameId.
Usually this is Box<[LabelNameId]> for simplicity, but BitFieldIdPath is an
implementation backed by BitFieldVec for cases where memory usage matters.
Required Methods§
fn iter(&self) -> impl Iterator<Item = LabelNameId>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.