Enum vulkano::swapchain::SurfaceCreationError [] [src]

pub enum SurfaceCreationError {
    OomError(OomError),
    MissingExtension {
        name: &'static str,
    },
}

Error that can happen when creating a debug callback.

Variants

Not enough memory.

The extension required for this function was not enabled.

Fields of MissingExtension

Name of the missing extension.

Trait Implementations

impl Copy for SurfaceCreationError
[src]

impl Clone for SurfaceCreationError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SurfaceCreationError
[src]

Formats the value using the given formatter.

impl PartialEq for SurfaceCreationError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for SurfaceCreationError
[src]

impl Error for SurfaceCreationError
[src]

A short description of the error. Read more

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

impl Display for SurfaceCreationError
[src]

Formats the value using the given formatter. Read more

impl From<OomError> for SurfaceCreationError
[src]

Performs the conversion.

impl From<Error> for SurfaceCreationError
[src]

Performs the conversion.