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

pub enum PersistentDescriptorSetBuildError {
    OomError(OomError),
    MissingDescriptors {
        expected: u32,
        obtained: u32,
    },
}

Error when building a persistent descriptor set.

Variants

Out of memory.

Didn't fill all the descriptors before building.

Fields of MissingDescriptors

Number of expected descriptors.

Number of descriptors that were added.

Trait Implementations

impl Debug for PersistentDescriptorSetBuildError
[src]

Formats the value using the given formatter. Read more

impl Clone for PersistentDescriptorSetBuildError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Error for PersistentDescriptorSetBuildError
[src]

This method is soft-deprecated. Read more

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

impl From<OomError> for PersistentDescriptorSetBuildError
[src]

Performs the conversion.

impl Display for PersistentDescriptorSetBuildError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations