pub enum GPUVertexFormat {
Show 41 variants
UINT8,
UINT8X2,
UINT8X4,
SINT8,
SINT8X2,
SINT8X4,
UNORM8,
UNORM8X2,
UNORM8X4,
SNORM8,
SNORM8X2,
SNORM8X4,
UINT16,
UINT16X2,
UINT16X4,
SINT16,
SINT16X2,
SINT16X4,
UNORM16,
UNORM16X2,
UNORM16X4,
SNORM16,
SNORM16X2,
SNORM16X4,
FLOAT16,
FLOAT16X2,
FLOAT16X4,
FLOAT32,
FLOAT32X2,
FLOAT32X3,
FLOAT32X4,
UINT32,
UINT32X2,
UINT32X3,
UINT32X4,
SINT32,
SINT32X2,
SINT32X3,
SINT32X4,
UNORM10_10_10_2,
UNORM8X4_BGRA,
}Variants§
UINT8
UINT8X2
UINT8X4
SINT8
SINT8X2
SINT8X4
UNORM8
UNORM8X2
UNORM8X4
SNORM8
SNORM8X2
SNORM8X4
UINT16
UINT16X2
UINT16X4
SINT16
SINT16X2
SINT16X4
UNORM16
UNORM16X2
UNORM16X4
SNORM16
SNORM16X2
SNORM16X4
FLOAT16
FLOAT16X2
FLOAT16X4
FLOAT32
FLOAT32X2
FLOAT32X3
FLOAT32X4
UINT32
UINT32X2
UINT32X3
UINT32X4
SINT32
SINT32X2
SINT32X3
SINT32X4
UNORM10_10_10_2
UNORM8X4_BGRA
Trait Implementations§
Source§impl Clone for GPUVertexFormat
impl Clone for GPUVertexFormat
Source§fn clone(&self) -> GPUVertexFormat
fn clone(&self) -> GPUVertexFormat
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 GPUVertexFormat
impl Debug for GPUVertexFormat
Source§impl From<&GPUVertexFormat> for Any
impl From<&GPUVertexFormat> for Any
Source§fn from(s: &GPUVertexFormat) -> Any
fn from(s: &GPUVertexFormat) -> Any
Converts to this type from the input type.
Source§impl From<GPUVertexFormat> for Any
impl From<GPUVertexFormat> for Any
Source§fn from(s: GPUVertexFormat) -> Any
fn from(s: GPUVertexFormat) -> Any
Converts to this type from the input type.
Source§impl FromVal for GPUVertexFormat
impl FromVal for GPUVertexFormat
Source§impl PartialEq for GPUVertexFormat
impl PartialEq for GPUVertexFormat
Source§impl PartialOrd for GPUVertexFormat
impl PartialOrd for GPUVertexFormat
impl Copy for GPUVertexFormat
impl StructuralPartialEq for GPUVertexFormat
Auto Trait Implementations§
impl Freeze for GPUVertexFormat
impl RefUnwindSafe for GPUVertexFormat
impl Send for GPUVertexFormat
impl Sync for GPUVertexFormat
impl Unpin for GPUVertexFormat
impl UnwindSafe for GPUVertexFormat
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