#[repr(C)]pub enum VkSharingMode {
VK_SHARING_MODE_EXCLUSIVE = 0,
VK_SHARING_MODE_CONCURRENT = 1,
VK_SHARING_MODE_MAX_ENUM = 2_147_483_647,
}Expand description
enum VkSharingMode from VK_VERSION_1_0
Variants§
VK_SHARING_MODE_EXCLUSIVE = 0
VK_SHARING_MODE_CONCURRENT = 1
VK_SHARING_MODE_MAX_ENUM = 2_147_483_647
Trait Implementations§
Source§impl Clone for VkSharingMode
impl Clone for VkSharingMode
Source§fn clone(&self) -> VkSharingMode
fn clone(&self) -> VkSharingMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for VkSharingMode
Source§impl Debug for VkSharingMode
impl Debug for VkSharingMode
impl Eq for VkSharingMode
Source§impl Hash for VkSharingMode
impl Hash for VkSharingMode
Source§impl Ord for VkSharingMode
impl Ord for VkSharingMode
Source§fn cmp(&self, other: &VkSharingMode) -> Ordering
fn cmp(&self, other: &VkSharingMode) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for VkSharingMode
impl PartialEq for VkSharingMode
Source§impl PartialOrd for VkSharingMode
impl PartialOrd for VkSharingMode
impl StructuralPartialEq for VkSharingMode
Auto Trait Implementations§
impl Freeze for VkSharingMode
impl RefUnwindSafe for VkSharingMode
impl Send for VkSharingMode
impl Sync for VkSharingMode
impl Unpin for VkSharingMode
impl UnsafeUnpin for VkSharingMode
impl UnwindSafe for VkSharingMode
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