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

pub enum PipelineLayoutCreationError {
    OomError(OomError),
    MaxDescriptorSetsLimitExceeded,
    MaxPushConstantsSizeExceeded,
    InvalidPushConstant,
}

Error that can happen when creating an instance.

Variants

Not enough memory.

The maximum number of descriptor sets has been exceeded.

The maximum size of push constants has been exceeded.

One of the push constants range didn't obey the rules. The list of stages must not be empty, the size must not be 0, and the size must be a multiple or 4.

Trait Implementations

impl Clone for PipelineLayoutCreationError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PipelineLayoutCreationError
[src]

Formats the value using the given formatter.

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

impl Error for PipelineLayoutCreationError
[src]

A short description of the error. Read more

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

impl Display for PipelineLayoutCreationError
[src]

Formats the value using the given formatter. Read more

impl From<OomError> for PipelineLayoutCreationError
[src]

Performs the conversion.

impl From<Error> for PipelineLayoutCreationError
[src]

Performs the conversion.