IterInPoint

Trait IterInPoint 

Source
pub trait IterInPoint<P: InPoint>: Iterator<Item = P> + Clone { }

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, P> IterInPoint<P> for T
where T: Iterator<Item = P> + Clone, P: InPoint,