pub trait ItemIdIterator {
type Item: Eq + Hash + Clone;
// Required method
fn into_iter(self) -> impl IntoIterator<Item = Self::Item>;
}
Expand description
A trait for InlineConfigItem
types that can be iterated over to produce keys for storage.
Required Associated Types§
Required Methods§
fn into_iter(self) -> impl IntoIterator<Item = Self::Item>
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.