Enum vulkano::framebuffer::FramebufferCreationError [] [src]

#[repr(u32)]
pub enum FramebufferCreationError { OomError(OomError), DimensionsTooLarge, AttachmentNotIdentitySwizzled, AttachmentTooSmall, }

Error that can happen when creating a framebuffer object.

Variants

Out of memory.

The requested dimensions exceed the device's limits.

One of the attachments has a component swizzle that is different from identity.

One of the attachments is too small compared to the requested framebuffer dimensions.

Trait Implementations

impl Copy for FramebufferCreationError
[src]

impl Clone for FramebufferCreationError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FramebufferCreationError
[src]

Formats the value using the given formatter.

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

impl From<OomError> for FramebufferCreationError
[src]

Performs the conversion.

impl Error for FramebufferCreationError
[src]

A short description of the error. Read more

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

impl Display for FramebufferCreationError
[src]

Formats the value using the given formatter. Read more

impl From<Error> for FramebufferCreationError
[src]

Performs the conversion.