Skip to main content

ITQ

Trait ITQ 

Source
pub trait ITQ: IObject {
    // Provided methods
    fn t(self) -> Vector3 { ... }
    fn set_t(self, value: Vector3) { ... }
    fn q(self) -> Quaternion { ... }
    fn set_q(self, value: Quaternion) { ... }
}

Provided Methods§

Source

fn t(self) -> Vector3

Source

fn set_t(self, value: Vector3)

Source

fn q(self) -> Quaternion

Source

fn set_q(self, value: Quaternion)

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 ITQ for TQ