[][src]Struct raylib_sys::Model

#[repr(C)]pub struct Model {
    pub transform: Matrix,
    pub meshCount: c_int,
    pub materialCount: c_int,
    pub meshes: *mut Mesh,
    pub materials: *mut Material,
    pub meshMaterial: *mut c_int,
    pub boneCount: c_int,
    pub bones: *mut BoneInfo,
    pub bindPose: *mut Transform,
}

Fields

transform: MatrixmeshCount: c_intmaterialCount: c_intmeshes: *mut Meshmaterials: *mut MaterialmeshMaterial: *mut c_intboneCount: c_intbones: *mut BoneInfobindPose: *mut Transform

Trait Implementations

impl Clone for Model[src]

impl Copy for Model[src]

impl Debug for Model[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.