pub trait NdIterMut<A, D>where
D: Dimension,{
type IterMut<'b, T: 'b>
where Self: 'b;
// Required method
fn nditer_mut(&mut self) -> Self::IterMut<'_, A>;
}Required Associated Types§
Required Methods§
Sourcefn nditer_mut(&mut self) -> Self::IterMut<'_, A>
fn nditer_mut(&mut self) -> Self::IterMut<'_, A>
returns a mutable iterator over the weights
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".