pub trait ForEachMut<'a, N, Coord> {
type Item;
// Required method
fn for_each_mut(
&'a mut self,
extent: &ExtentN<N>,
f: impl FnMut(Coord, Self::Item),
);
}Required Associated Types§
Required Methods§
fn for_each_mut( &'a mut self, extent: &ExtentN<N>, f: impl FnMut(Coord, Self::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.