pub trait MatrixIndexMut<'a, T, R: Dim, C: Dim, S: RawStorageMut<T, R, C>>: MatrixIndex<'a, T, R, C, S> {
type OutputMut: 'a;
}Expand description
A helper trait used for indexing operations.
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".