[][src]Struct xatlas_rs::MeshDecl

#[repr(C)]
pub struct MeshDecl<'a> { pub vertex_count: u32, pub vertex_position_data: &'a [u8], pub vertex_position_stride: u32, pub vertex_normal_data: &'a [u8], pub vertex_normal_stride: u32, pub vertex_uv_data: &'a [u8], pub vertex_uv_stride: u32, pub index_count: u32, pub index_data: &'a [u8], pub index_offset: i32, pub index_format: IndexFormat, pub face_ignore_data: &'a [bool], }

Fields

vertex_count: u32vertex_position_data: &'a [u8]vertex_position_stride: u32vertex_normal_data: &'a [u8]vertex_normal_stride: u32vertex_uv_data: &'a [u8]vertex_uv_stride: u32index_count: u32index_data: &'a [u8]index_offset: i32index_format: IndexFormatface_ignore_data: &'a [bool]

Trait Implementations

impl<'a> Default for MeshDecl<'a>[src]

impl<'a> Debug for MeshDecl<'a>[src]

Auto Trait Implementations

impl<'a> Send for MeshDecl<'a>

impl<'a> Sync for MeshDecl<'a>

Blanket Implementations

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

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

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.

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

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

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