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]

[src]

Formats the value using the given formatter. Read more

impl Clone for PersistentDescriptorSetBuildError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Error for PersistentDescriptorSetBuildError
[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 From<OomError> for PersistentDescriptorSetBuildError
[src]

[src]

Performs the conversion.

impl Display for PersistentDescriptorSetBuildError
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations