pub trait MatPow<Rhs = Self> {
type Output;
// Required method
fn matpow(&self, rhs: Rhs) -> Self::Output;
}Expand description
The MatPow trait defines an interface for computing the power of some matrix
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".