Enum vulkano_glfw::VulkanoGlfwError [] [src]

pub enum VulkanoGlfwError {
    GlfwError {
        code: u32,
    },
    NoExtensions,
}

error while creating a GLFW-based surface

Variants

General GLFW error

Fields of GlfwError

Trait Implementations

impl Copy for VulkanoGlfwError
[src]

impl Clone for VulkanoGlfwError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for VulkanoGlfwError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for VulkanoGlfwError
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for VulkanoGlfwError
[src]

impl Error for VulkanoGlfwError
[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 VulkanoGlfwError
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations