pub trait Transformable3D: Sized {
// Required methods
fn into_coord3d(self) -> Coord3D;
fn from_coord3d(c: Coord3D) -> Self;
}Expand description
Required Methods§
fn into_coord3d(self) -> Coord3D
fn from_coord3d(c: Coord3D) -> 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.