Enum vulkano::OomError [] [src]

pub enum OomError {
    OutOfHostMemory,
    OutOfDeviceMemory,
}

Error type returned by most Vulkan functions.

Variants

There is no memory available on the host (ie. the CPU, RAM, etc.).

There is no memory available on the device (ie. video memory).

Trait Implementations

impl Copy for OomError
[src]

impl Clone for OomError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for OomError
[src]

Formats the value using the given formatter.

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

impl Error for OomError
[src]

A short description of the error. Read more

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

impl Display for OomError
[src]

Formats the value using the given formatter.

impl From<Error> for OomError
[src]

Performs the conversion.