#[non_exhaustive]#[repr(u32)]pub enum VkFrontFace {
VK_FRONT_FACE_COUNTER_CLOCKWISE = 0,
VK_FRONT_FACE_CLOCKWISE = 1,
VK_FRONT_FACE_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_FRONT_FACE_COUNTER_CLOCKWISE = 0
VK_FRONT_FACE_CLOCKWISE = 1
VK_FRONT_FACE_MAX_ENUM = 2_147_483_647
Trait Implementations§
Source§impl Clone for VkFrontFace
impl Clone for VkFrontFace
Source§fn clone(&self) -> VkFrontFace
fn clone(&self) -> VkFrontFace
Returns a copy 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 VkFrontFace
impl Debug for VkFrontFace
Source§impl Hash for VkFrontFace
impl Hash for VkFrontFace
Source§impl PartialEq for VkFrontFace
impl PartialEq for VkFrontFace
impl Copy for VkFrontFace
impl Eq for VkFrontFace
impl StructuralPartialEq for VkFrontFace
Auto Trait Implementations§
impl Freeze for VkFrontFace
impl RefUnwindSafe for VkFrontFace
impl Send for VkFrontFace
impl Sync for VkFrontFace
impl Unpin for VkFrontFace
impl UnwindSafe for VkFrontFace
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