Enum vulkano_win::CreationError[][src]

pub enum CreationError {
    SurfaceCreationError(SurfaceCreationError),
    WindowCreationError(WindowCreationError),
}

Error that can happen when creating a window.

Variants

Error when creating the surface.

Error when creating the window.

Trait Implementations

impl Debug for CreationError
[src]

Formats the value using the given formatter. Read more

impl Error for CreationError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

impl Display for CreationError
[src]

Formats the value using the given formatter. Read more

impl From<SurfaceCreationError> for CreationError
[src]

Performs the conversion.

impl From<WindowCreationError> for CreationError
[src]

Performs the conversion.

Auto Trait Implementations