Trait IteratorExt

Source
pub trait IteratorExt: Iterator + Sized
where Self::Item: Attach,
{ // Provided methods fn attach(self) -> AttachIter<Self> { ... } fn attach_location(self, location: Location) -> AttachIter<Self> { ... } }

Provided Methods§

Source

fn attach(self) -> AttachIter<Self>

Source

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.

Implementors§

Source§

impl<T: Iterator> IteratorExt for T
where T::Item: Attach,