Enum wgpu_types::IndexFormat
source · [−]#[repr(C)]
pub enum IndexFormat {
Uint16,
Uint32,
}
Expand description
Format of indices used with pipeline.
Corresponds to WebGPU GPUIndexFormat
.
Variants
Uint16
Indices are 16 bit unsigned integers.
Uint32
Indices are 32 bit unsigned integers.
Trait Implementations
sourceimpl Clone for IndexFormat
impl Clone for IndexFormat
sourcefn clone(&self) -> IndexFormat
fn clone(&self) -> IndexFormat
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for IndexFormat
impl Debug for IndexFormat
sourceimpl Default for IndexFormat
impl Default for IndexFormat
sourceimpl Hash for IndexFormat
impl Hash for IndexFormat
sourceimpl PartialEq<IndexFormat> for IndexFormat
impl PartialEq<IndexFormat> for IndexFormat
impl Copy for IndexFormat
impl Eq for IndexFormat
impl StructuralEq for IndexFormat
impl StructuralPartialEq for IndexFormat
Auto Trait Implementations
impl RefUnwindSafe for IndexFormat
impl Send for IndexFormat
impl Sync for IndexFormat
impl Unpin for IndexFormat
impl UnwindSafe for IndexFormat
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more