pub trait ComptimeIndexMut<I>: ComptimeIndex<I> + IndexMut<I> {
// Provided method
fn cube_idx_mut(&mut self, i: I) -> &mut Self::Output { ... }
}Provided Methods§
fn cube_idx_mut(&mut self, i: I) -> &mut Self::Output
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".