#[repr(i32)]pub enum VkPresentMode {
Immediate = 0,
Mailbox = 1,
Fifo = 2,
FifoRelaxed = 3,
SharedDemandRefresh = 1_000_111_000,
SharedContinuousRefresh = 1_000_111_001,
}
Expand description
Wrapper for VkPresentModeKHR.
Variants§
Trait Implementations§
Source§impl Clone for VkPresentMode
impl Clone for VkPresentMode
Source§fn clone(&self) -> VkPresentMode
fn clone(&self) -> VkPresentMode
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 VkPresentMode
impl Debug for VkPresentMode
Source§impl Default for VkPresentMode
impl Default for VkPresentMode
Source§fn default() -> VkPresentMode
fn default() -> VkPresentMode
Returns the “default value” for a type. Read more
Source§impl PartialEq for VkPresentMode
impl PartialEq for VkPresentMode
impl Copy for VkPresentMode
impl StructuralPartialEq for VkPresentMode
Auto Trait Implementations§
impl Freeze for VkPresentMode
impl RefUnwindSafe for VkPresentMode
impl Send for VkPresentMode
impl Sync for VkPresentMode
impl Unpin for VkPresentMode
impl UnwindSafe for VkPresentMode
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