Enum dacite::core::EarlyInstanceError [] [src]

pub enum EarlyInstanceError {
    LoadLibraryFailed(String),
    SymbolNotFound(String),
    VulkanError(Error),
}

Indicates an error, which occurred before an Instance was created.

Variants

The Vulkan library could be loaded.

A required symbol was not found in the Vulkan library.

A Vulkan error occurred.

Trait Implementations

impl Debug for EarlyInstanceError
[src]

Formats the value using the given formatter.

impl Clone for EarlyInstanceError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for EarlyInstanceError
[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 EarlyInstanceError
[src]

impl From<VkResult> for EarlyInstanceError
[src]

Performs the conversion.

impl Display for EarlyInstanceError
[src]

Formats the value using the given formatter. Read more

impl Error for EarlyInstanceError
[src]

A short description of the error. Read more

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