pub trait Items:
Sized
+ IntoIterator<Item = Self::Elem>
+ Send
+ Sealed {
type Elem: Send + Sync;
// Required methods
fn len(&self) -> usize;
fn split_at(self, idx: usize) -> (Self, Self);
}
Expand description
This is considered as a private type and it’s NOT A PUBLIC API.
Required Associated Types§
Required Methods§
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.