Trait glm::Primitive [] [src]

pub trait Primitive: Send + Copy + Sized + Clone + PartialOrd + PartialEq + Rand { }

Marker trait for primitive types.

Note

In glm, not all Rust primitive number types are used. Only those types that used in GLSL, i.e., f32, f64, i32, u32 and bool, implement this trait.

Implementations on Foreign Types

impl Primitive for bool
[src]

impl Primitive for i32
[src]

impl Primitive for u32
[src]

impl Primitive for f32
[src]

impl Primitive for f64
[src]

Implementors