pub trait IteratorExt: Iterator + Sized{
// Provided methods
fn attach(self) -> AttachIter<Self> ⓘ { ... }
fn attach_location(self, location: Location) -> AttachIter<Self> ⓘ { ... }
}
Provided Methods§
fn attach(self) -> AttachIter<Self> ⓘ
fn attach_location(self, location: Location) -> AttachIter<Self> ⓘ
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.