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

pub enum UnsafePipelineLayoutCreationError {
    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 UnsafePipelineLayoutCreationError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for UnsafePipelineLayoutCreationError
[src]

Formats the value using the given formatter.

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

impl Error for UnsafePipelineLayoutCreationError
[src]

A short description of the error. Read more

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

impl Display for UnsafePipelineLayoutCreationError
[src]

Formats the value using the given formatter.

impl From<OomError> for UnsafePipelineLayoutCreationError
[src]

Performs the conversion.

impl From<Error> for UnsafePipelineLayoutCreationError
[src]

Performs the conversion.