pub trait AffineTransform<T> {
// Required methods
fn id_() -> Self;
fn compose(&self, rhs: &Self) -> Self;
fn apply(&self, x: T) -> T;
fn pow(&self, p: usize) -> Self;
}Expand description
Affine変換の実装
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.