Enum vulkano::descriptor::pipeline_layout::PipelineLayoutNotSupersetError [] [src]

pub enum PipelineLayoutNotSupersetError {
    DescriptorsCountMismatch {
        set_num: u32,
        self_num_descriptors: u32,
        other_num_descriptors: u32,
    },
    ExpectedEmptyDescriptor {
        set_num: u32,
        descriptor: u32,
    },
    IncompatibleDescriptors {
        set_num: u32,
        descriptor: u32,
    },
}

Error that can happen when creating a graphics pipeline.

Variants

There are more descriptors in the child than in the parent layout.

Fields of DescriptorsCountMismatch

Expected an empty descriptor, but got something instead.

Fields of ExpectedEmptyDescriptor

Two descriptors are incompatible.

Fields of IncompatibleDescriptors

Trait Implementations

impl Clone for PipelineLayoutNotSupersetError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PipelineLayoutNotSupersetError
[src]

Formats the value using the given formatter.

impl PartialEq for PipelineLayoutNotSupersetError
[src]

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

This method tests for !=.

impl Eq for PipelineLayoutNotSupersetError
[src]

impl Error for PipelineLayoutNotSupersetError
[src]

A short description of the error. Read more

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

impl Display for PipelineLayoutNotSupersetError
[src]

Formats the value using the given formatter. Read more