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