#[repr(C)]pub struct DrawIndirectCommand {
pub vertex_count: u32,
pub instance_count: u32,
pub first_vertex: u32,
pub first_instance: u32,
}Fields§
§vertex_count: u32§instance_count: u32§first_vertex: u32§first_instance: u32Trait Implementations§
Source§impl Clone for DrawIndirectCommand
impl Clone for DrawIndirectCommand
Source§fn clone(&self) -> DrawIndirectCommand
fn clone(&self) -> DrawIndirectCommand
Returns a duplicate 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 DrawIndirectCommand
impl Debug for DrawIndirectCommand
Source§impl Default for DrawIndirectCommand
impl Default for DrawIndirectCommand
Source§fn default() -> DrawIndirectCommand
fn default() -> DrawIndirectCommand
Returns the “default value” for a type. Read more
Source§impl PartialEq for DrawIndirectCommand
impl PartialEq for DrawIndirectCommand
impl Copy for DrawIndirectCommand
impl Eq for DrawIndirectCommand
impl Pod for DrawIndirectCommand
impl StructuralPartialEq for DrawIndirectCommand
Auto Trait Implementations§
impl Freeze for DrawIndirectCommand
impl RefUnwindSafe for DrawIndirectCommand
impl Send for DrawIndirectCommand
impl Sync for DrawIndirectCommand
impl Unpin for DrawIndirectCommand
impl UnwindSafe for DrawIndirectCommand
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
Source§impl<T> BufferContents for T
impl<T> BufferContents for T
Source§const LAYOUT: BufferContentsLayout
const LAYOUT: BufferContentsLayout
The layout of the contents.
unsafe fn ptr_from_slice(slice: NonNull<[u8]>) -> *mut T
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.