#[non_exhaustive]#[repr(u32)]pub enum VkTessellationDomainOrigin {
VK_TESSELLATION_DOMAIN_ORIGIN_UPPER_LEFT = 0,
VK_TESSELLATION_DOMAIN_ORIGIN_LOWER_LEFT = 1,
VK_TESSELLATION_DOMAIN_ORIGIN_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_TESSELLATION_DOMAIN_ORIGIN_UPPER_LEFT = 0
VK_TESSELLATION_DOMAIN_ORIGIN_LOWER_LEFT = 1
VK_TESSELLATION_DOMAIN_ORIGIN_MAX_ENUM = 2_147_483_647
Implementations§
Source§impl VkTessellationDomainOrigin
impl VkTessellationDomainOrigin
pub const VK_TESSELLATION_DOMAIN_ORIGIN_UPPER_LEFT_KHR: VkTessellationDomainOrigin = VkTessellationDomainOrigin::VK_TESSELLATION_DOMAIN_ORIGIN_UPPER_LEFT
Source§impl VkTessellationDomainOrigin
impl VkTessellationDomainOrigin
pub const VK_TESSELLATION_DOMAIN_ORIGIN_LOWER_LEFT_KHR: VkTessellationDomainOrigin = VkTessellationDomainOrigin::VK_TESSELLATION_DOMAIN_ORIGIN_LOWER_LEFT
Trait Implementations§
Source§impl Clone for VkTessellationDomainOrigin
impl Clone for VkTessellationDomainOrigin
Source§fn clone(&self) -> VkTessellationDomainOrigin
fn clone(&self) -> VkTessellationDomainOrigin
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 VkTessellationDomainOrigin
impl Debug for VkTessellationDomainOrigin
Source§impl Hash for VkTessellationDomainOrigin
impl Hash for VkTessellationDomainOrigin
impl Copy for VkTessellationDomainOrigin
impl Eq for VkTessellationDomainOrigin
impl StructuralPartialEq for VkTessellationDomainOrigin
Auto Trait Implementations§
impl Freeze for VkTessellationDomainOrigin
impl RefUnwindSafe for VkTessellationDomainOrigin
impl Send for VkTessellationDomainOrigin
impl Sync for VkTessellationDomainOrigin
impl Unpin for VkTessellationDomainOrigin
impl UnwindSafe for VkTessellationDomainOrigin
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