pub trait TransposeAssign {
// Required method
fn transpose_assign(&mut self);
}Expand description
This type supports performing a matrix transpose
§Info
Similar to the AddAssign or MulAssign traits in that it takes a mutable reference to the
underlying object and performs the transpose in place.
Required Methods§
fn transpose_assign(&mut self)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".