#[repr(C)]pub struct DrawIndexedIndirectCmd {
pub index_count: u32,
pub instance_count: u32,
pub first_index: u32,
pub base_vertex: i32,
pub first_instance: u32,
}
Expand description
Indirect (indexed) draw command structure.
Fields§
§index_count: u32
§instance_count: u32
§first_index: u32
§base_vertex: i32
§first_instance: u32
Trait Implementations§
Source§impl Clone for DrawIndexedIndirectCmd
impl Clone for DrawIndexedIndirectCmd
Source§fn clone(&self) -> DrawIndexedIndirectCmd
fn clone(&self) -> DrawIndexedIndirectCmd
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DrawIndexedIndirectCmd
impl Debug for DrawIndexedIndirectCmd
impl Copy for DrawIndexedIndirectCmd
Auto Trait Implementations§
impl Freeze for DrawIndexedIndirectCmd
impl RefUnwindSafe for DrawIndexedIndirectCmd
impl Send for DrawIndexedIndirectCmd
impl Sync for DrawIndexedIndirectCmd
impl Unpin for DrawIndexedIndirectCmd
impl UnwindSafe for DrawIndexedIndirectCmd
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more