Enum vulkano::device::DeviceCreationError [] [src]

pub enum DeviceCreationError {
    InitializationFailed,
    TooManyObjects,
    DeviceLost,
    FeatureNotPresent,
    ExtensionNotPresent,
    TooManyQueuesForFamily,
    PriorityOutOfRange,
    OutOfHostMemory,
    OutOfDeviceMemory,
}

Error that can be returned when creating a device.

Variants

Failed to create the device for an implementation-specific reason.

You have reached the limit to the number of devices that can be created from the same physical device.

Failed to connect to the device.

Some of the requested features are unsupported by the physical device.

Some of the requested device extensions are not supported by the physical device.

Tried to create too many queues for a given family.

The priority of one of the queues is out of the [0.0; 1.0] range.

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 DeviceCreationError
[src]

impl Clone for DeviceCreationError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DeviceCreationError
[src]

[src]

Formats the value using the given formatter. Read more

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

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

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations