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

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

Error that can happen when creating a compute pipeline.

Variants

OomError(OomError)

Not enough memory.

ColorAttachmentsLimitExceeded

The maximum number of color attachments has been exceeded.

Trait Implementations

impl Eq for RenderPassCreationError
[src]

impl PartialEq for RenderPassCreationError
[src]

fn eq(&self, __arg_0: &RenderPassCreationError) -> bool

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

fn ne(&self, __arg_0: &RenderPassCreationError) -> bool

This method tests for !=.

impl Debug for RenderPassCreationError
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for RenderPassCreationError
[src]

fn clone(&self) -> RenderPassCreationError

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Error for RenderPassCreationError
[src]

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>

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

impl Display for RenderPassCreationError
[src]

fn fmt(&self, fmt: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.

impl From<OomError> for RenderPassCreationError
[src]

fn from(err: OomError) -> RenderPassCreationError

Performs the conversion.

impl From<Error> for RenderPassCreationError
[src]

fn from(err: Error) -> RenderPassCreationError

Performs the conversion.