pub trait FlatMapInPlace<T>: Sized {
// Required method
fn flat_map_in_place<F, I>(&mut self, f: F)
where F: FnMut(T) -> I,
I: IntoIterator<Item = T>;
}
Required Methods§
fn flat_map_in_place<F, I>(&mut self, f: F)where
F: FnMut(T) -> I,
I: IntoIterator<Item = T>,
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.