Enum vulkano::framebuffer::RenderPassCreationError [] [src]

pub enum RenderPassCreationError {
    OomError(OomError),
    ColorAttachmentsLimitExceeded,
}

Error that can happen when creating a compute pipeline.

Variants

Not enough memory.

The maximum number of color attachments has been exceeded.

Trait Implementations

impl Clone for RenderPassCreationError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RenderPassCreationError
[src]

Formats the value using the given formatter.

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

impl Error for RenderPassCreationError
[src]

A short description of the error. Read more

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

impl Display for RenderPassCreationError
[src]

Formats the value using the given formatter. Read more

impl From<OomError> for RenderPassCreationError
[src]

Performs the conversion.

impl From<Error> for RenderPassCreationError
[src]

Performs the conversion.