[][src]Enum rendy_wsi::SwapchainError

[]
pub enum SwapchainError {
    Create(CreationError),
    BadPresentMode(PresentMode),
    BadImageCount(SwapImageIndex),
}
[]

Error creating a new swapchain.

Variants

Create(CreationError)
[]

Internal error in gfx-hal.

BadPresentMode(PresentMode)
[]

Present mode is not supported.

BadImageCount(SwapImageIndex)
[]

Image count is not supported.

Trait Implementations

impl Debug for SwapchainError[src][+]

Auto Trait Implementations

impl RefUnwindSafe for SwapchainError

impl Send for SwapchainError

impl Sync for SwapchainError

impl Unpin for SwapchainError

impl UnwindSafe for SwapchainError

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src][+]

impl<T> Borrow<T> for T where
    T: ?Sized
[src][+]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src][+]

impl<T> From<T> for T[src][+]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src][+]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src][+]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src][+]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.