pub trait EighInto: Sized {
type EigVal;
// Required method
fn eigh_into(self, uplo: UPLO) -> Result<(Self::EigVal, Self)>;
}
Expand description
Eigenvalue decomposition of Hermite matrix
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.