Trait Transform

Source
trait Transform {
    // Required method
    fn transform(self, other: Self) -> Self;
}

Required Methods§

Source

fn transform(self, other: Self) -> Self

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.

Implementations on Foreign Types§

Source§

impl Transform for [f64; 6]

Source§

fn transform(self, other: Self) -> Self

Implementors§