Trait Tuple2Geometry

Source
pub trait Tuple2Geometry<A> {
    // Required method
    fn rotate(self, deg: A) -> Self;
}

Required Methods§

Source

fn rotate(self, deg: A) -> 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.

Implementors§

Source§

impl<T: Tuple2<f32>, A> Tuple2Geometry<A> for T
where f32: Cast<A>, Self: Cast<V2>,