pub trait IntoCopied<'a, T, C>{
// Provided method
fn copied(self) -> Copied<'a, T, C> { ... }
}
Expand description
Trait converting a concurrent iterator yielding &T to one yielding T by copying elements.
Provided Methods§
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.