#[non_exhaustive]#[repr(u32)]pub enum VkVertexInputRate {
VK_VERTEX_INPUT_RATE_VERTEX = 0,
VK_VERTEX_INPUT_RATE_INSTANCE = 1,
VK_VERTEX_INPUT_RATE_MAX_ENUM = 2_147_483_647,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
VK_VERTEX_INPUT_RATE_VERTEX = 0
VK_VERTEX_INPUT_RATE_INSTANCE = 1
VK_VERTEX_INPUT_RATE_MAX_ENUM = 2_147_483_647
Trait Implementations§
Source§impl Clone for VkVertexInputRate
impl Clone for VkVertexInputRate
Source§fn clone(&self) -> VkVertexInputRate
fn clone(&self) -> VkVertexInputRate
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 VkVertexInputRate
impl Debug for VkVertexInputRate
Source§impl Hash for VkVertexInputRate
impl Hash for VkVertexInputRate
Source§impl PartialEq for VkVertexInputRate
impl PartialEq for VkVertexInputRate
impl Copy for VkVertexInputRate
impl Eq for VkVertexInputRate
impl StructuralPartialEq for VkVertexInputRate
Auto Trait Implementations§
impl Freeze for VkVertexInputRate
impl RefUnwindSafe for VkVertexInputRate
impl Send for VkVertexInputRate
impl Sync for VkVertexInputRate
impl Unpin for VkVertexInputRate
impl UnwindSafe for VkVertexInputRate
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