#[non_exhaustive]#[repr(u32)]pub enum VkPipelineLayoutCreateFlagBits {
VK_PIPELINE_LAYOUT_CREATE_INDEPENDENT_SETS_BIT_EXT = 2,
VK_PIPELINE_LAYOUT_CREATE_FLAG_BITS_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_PIPELINE_LAYOUT_CREATE_INDEPENDENT_SETS_BIT_EXT = 2
VK_PIPELINE_LAYOUT_CREATE_FLAG_BITS_MAX_ENUM = 2_147_483_647
Trait Implementations§
Source§impl Clone for VkPipelineLayoutCreateFlagBits
impl Clone for VkPipelineLayoutCreateFlagBits
Source§fn clone(&self) -> VkPipelineLayoutCreateFlagBits
fn clone(&self) -> VkPipelineLayoutCreateFlagBits
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 PartialEq for VkPipelineLayoutCreateFlagBits
impl PartialEq for VkPipelineLayoutCreateFlagBits
Source§fn eq(&self, other: &VkPipelineLayoutCreateFlagBits) -> bool
fn eq(&self, other: &VkPipelineLayoutCreateFlagBits) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for VkPipelineLayoutCreateFlagBits
impl Eq for VkPipelineLayoutCreateFlagBits
impl StructuralPartialEq for VkPipelineLayoutCreateFlagBits
Auto Trait Implementations§
impl Freeze for VkPipelineLayoutCreateFlagBits
impl RefUnwindSafe for VkPipelineLayoutCreateFlagBits
impl Send for VkPipelineLayoutCreateFlagBits
impl Sync for VkPipelineLayoutCreateFlagBits
impl Unpin for VkPipelineLayoutCreateFlagBits
impl UnwindSafe for VkPipelineLayoutCreateFlagBits
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