#[repr(C)]pub enum SwapChainStatus {
Good = 0,
Suboptimal = 1,
Timeout = 2,
Outdated = 3,
Lost = 4,
OutOfMemory = 5,
}
Expand description
Status of the recieved swapchain image.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SwapChainStatus
impl RefUnwindSafe for SwapChainStatus
impl Send for SwapChainStatus
impl Sync for SwapChainStatus
impl Unpin for SwapChainStatus
impl UnwindSafe for SwapChainStatus
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