elipdotter::proximity::algo

Trait IClo

source
pub trait IClo: Iterator<Item = char> + Clone { }
Expand description

Helper trait for char Iterators which are also 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: Iterator<Item = char> + Clone> IClo for T