[][src]Enum gaclen::graphics::ResizeError

pub enum ResizeError {
    Swapchain(SwapchainCreationError),
    Image(ImageCreationError),
    UnsizedWindow,
}

Error during resizing of viewports.

Variants

Error during recreation of the Device swapchain.

Error during recreation of depth image of the Device swapchain.

UnsizedWindow

The window provided has no apparent size.

Trait Implementations

impl From<SwapchainCreationError> for ResizeError[src]

impl From<ImageCreationError> for ResizeError[src]

impl Clone for ResizeError[src]

impl Eq for ResizeError[src]

impl PartialEq<ResizeError> for ResizeError[src]

impl Debug for ResizeError[src]

impl StructuralPartialEq for ResizeError[src]

impl StructuralEq for ResizeError[src]

Auto Trait Implementations

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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

impl<T> Content for T[src]

impl<T> SafeBorrow<T> for T[src]