Enum vulkano::descriptor::descriptor_set::DescriptorPoolAllocError [] [src]

pub enum DescriptorPoolAllocError {
    OutOfHostMemory,
    OutOfDeviceMemory,
    FragmentedPool,
    OutOfPoolMemory,
}

Error that can be returned when creating a device.

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).

Allocation has failed because the pool is too fragmented.

There is no more space available in the descriptor pool.

Trait Implementations

impl Copy for DescriptorPoolAllocError
[src]

impl Clone for DescriptorPoolAllocError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DescriptorPoolAllocError
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for DescriptorPoolAllocError
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Eq for DescriptorPoolAllocError
[src]

impl Error for DescriptorPoolAllocError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

impl Display for DescriptorPoolAllocError
[src]

[src]

Formats the value using the given formatter. Read more