Enum vulkano::command_buffer::validity::CheckDescriptorSetsValidityError [] [src]

pub enum CheckDescriptorSetsValidityError {
    MissingDescriptor {
        set_num: usize,
        binding_num: usize,
    },
    IncompatibleDescriptor {
        error: DescriptorDescSupersetError,
        set_num: usize,
        binding_num: usize,
    },
}

Error that can happen when checking descriptor sets validity.

Variants

A descriptor is missing in the descriptor sets that were provided.

Fields of MissingDescriptor

The index of the set of the descriptor.

The binding number of the descriptor.

A descriptor in the provided sets is not compatible with what is expected.

Fields of IncompatibleDescriptor

The reason why the two descriptors aren't compatible.

The index of the set of the descriptor.

The binding number of the descriptor.

Trait Implementations

impl Debug for CheckDescriptorSetsValidityError
[src]

[src]

Formats the value using the given formatter.

impl Clone for CheckDescriptorSetsValidityError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[src]

Formats the value using the given formatter. Read more