[][src]Struct processing::index::DrawCommandIndices

#[repr(C)]
pub struct DrawCommandIndices { pub count: u32, pub instance_count: u32, pub first_index: u32, pub base_vertex: u32, pub base_instance: u32, }

Represents an element in a list of draw commands.

Fields

count: u32

Number of indices to use in the index buffer.

instance_count: u32

Number of instances to draw. If it's 0, nothing will be drawn.

first_index: u32

First index to draw in the index buffer.

base_vertex: u32

Value to add to each index.

base_instance: u32

Numero of the first instance to draw.

Trait Implementations

impl UniformBlock for DrawCommandIndices[src]

impl Clone for DrawCommandIndices[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DrawCommandIndices[src]

impl Copy for DrawCommandIndices[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> Content for T where
    T: Copy
[src]

type Owned = T

A type that holds a sized version of the content.

impl<T> Same for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> Erased for T[src]