Enum vulkano::instance::LayersListError [] [src]

pub enum LayersListError {
    LoadingError(LoadingError),
    OomError(OomError),
}

Error that can happen when loading the list of layers.

Variants

Failed to load the Vulkan shared library.

Not enough memory.

Trait Implementations

impl Clone for LayersListError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for LayersListError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for LayersListError
[src]

[src]

A short description of the error. Read more

[src]

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

impl Display for LayersListError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<OomError> for LayersListError
[src]

[src]

Performs the conversion.

impl From<LoadingError> for LayersListError
[src]

[src]

Performs the conversion.

Auto Trait Implementations