Struct vulkanalia::vk::GeometryTrianglesNV[][src]

#[repr(C)]pub struct GeometryTrianglesNV {
    pub s_type: StructureType,
    pub next: *const c_void,
    pub vertex_data: Buffer,
    pub vertex_offset: u64,
    pub vertex_count: u32,
    pub vertex_stride: u64,
    pub vertex_format: Format,
    pub index_data: Buffer,
    pub index_offset: u64,
    pub index_count: u32,
    pub index_type: IndexType,
    pub transform_data: Buffer,
    pub transform_offset: u64,
}

Fields

s_type: StructureTypenext: *const c_voidvertex_data: Buffervertex_offset: u64vertex_count: u32vertex_stride: u64vertex_format: Formatindex_data: Bufferindex_offset: u64index_count: u32index_type: IndexTypetransform_data: Buffertransform_offset: u64

Trait Implementations

impl Cast for GeometryTrianglesNV[src]

type Target = GeometryTrianglesNV

The other type this type type can be used interchangeably with in FFI.

impl Clone for GeometryTrianglesNV[src]

impl Copy for GeometryTrianglesNV[src]

impl Debug for GeometryTrianglesNV[src]

impl Default for GeometryTrianglesNV[src]

impl Eq for GeometryTrianglesNV[src]

impl HasBuilder<'static> for GeometryTrianglesNV[src]

type Builder = GeometryTrianglesNVBuilder

The associated builder for this type.

impl Hash for GeometryTrianglesNV[src]

impl PartialEq<GeometryTrianglesNV> for GeometryTrianglesNV[src]

impl StructuralEq for GeometryTrianglesNV[src]

impl StructuralPartialEq for GeometryTrianglesNV[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.