Enum vulkano::instance::loader::LoadingError[][src]

pub enum LoadingError {
    LibraryLoadFailure(String),
    MissingEntryPoint(String),
}

Error that can happen when loading the Vulkan loader.

Variants

Failed to load the Vulkan shared library.

One of the entry points required to be supported by the Vulkan implementation is missing.

Trait Implementations

impl Debug for LoadingError
[src]

Formats the value using the given formatter. Read more

impl Clone for LoadingError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Error for LoadingError
[src]

This method is soft-deprecated. Read more

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

impl Display for LoadingError
[src]

Formats the value using the given formatter. Read more

impl From<LoadingError> for InstanceCreationError
[src]

Performs the conversion.

impl From<LoadingError> for LayersListError
[src]

Performs the conversion.

Auto Trait Implementations