pub trait IsTransFormableTo3D: Is2D {
// Required method
fn transform_to_3d<P>(&self, z: f64) -> P
where P: IsBuildable3D;
}
Expand description
IsTransFormableTo3D is a trait used for any type which can be transformed 3D space
Required Methods§
Sourcefn transform_to_3d<P>(&self, z: f64) -> Pwhere
P: IsBuildable3D,
fn transform_to_3d<P>(&self, z: f64) -> Pwhere
P: IsBuildable3D,
Should create representation of self within the 3D space with a given z-coordinate
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.