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

pub enum PipelineLayoutCreationError {
    OomError(OomError),
    LimitsError(PipelineLayoutLimitsError),
    InvalidPushConstant,
}

Error that can happen when creating a pipeline layout.

Variants

Not enough memory.

The pipeline layout description doesn't fulfill the limit requirements.

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]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for PipelineLayoutCreationError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for PipelineLayoutCreationError
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for PipelineLayoutCreationError
[src]

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

[src]

Formats the value using the given formatter. Read more

impl From<OomError> for PipelineLayoutCreationError
[src]

[src]

Performs the conversion.

impl From<PipelineLayoutLimitsError> for PipelineLayoutCreationError
[src]

impl From<PipelineLayoutCreationError> for ComputePipelineCreationError
[src]

Auto Trait Implementations