pub trait CollectJoin {
// Provided methods
fn join(&mut self, separator: &str) -> String
where Self: Iterator,
<Self as Iterator>::Item: ToString { ... }
fn to_vec(self) -> Vec<<Self as Iterator>::Item>
where Self: Iterator + Sized { ... }
}Provided Methods§
fn join(&mut self, separator: &str) -> String
fn to_vec(self) -> Vec<<Self as Iterator>::Item>
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.