Enum vulkano::memory::DeviceMemoryAllocError [] [src]

pub enum DeviceMemoryAllocError {
    OomError(OomError),
    TooManyObjects,
    MemoryMapFailed,
}

Error type returned by functions related to DeviceMemory.

Variants

Not enough memory available.

The maximum number of allocations has been exceeded.

Memory map failed.

Trait Implementations

impl Copy for DeviceMemoryAllocError
[src]

impl Clone for DeviceMemoryAllocError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DeviceMemoryAllocError
[src]

[src]

Formats the value using the given formatter.

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

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

[src]

Formats the value using the given formatter. Read more

impl From<Error> for DeviceMemoryAllocError
[src]

[src]

Performs the conversion.

impl From<OomError> for DeviceMemoryAllocError
[src]

[src]

Performs the conversion.