Enum vulkano::command_buffer::submit::SubmitPresentError [] [src]

#[repr(u32)]
pub enum SubmitPresentError { OomError(OomError), DeviceLost, SurfaceLost, OutOfDate, }

Error that can happen when submitting the present prototype.

Variants

Not enough memory.

The connection to the device has been lost.

The surface is no longer accessible and must be recreated.

The surface has changed in a way that makes the swapchain unusable. You must query the surface's new properties and recreate a new swapchain if you want to continue drawing.

Trait Implementations

impl Copy for SubmitPresentError
[src]

impl Clone for SubmitPresentError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SubmitPresentError
[src]

Formats the value using the given formatter.

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

impl Error for SubmitPresentError
[src]

A short description of the error. Read more

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

impl Display for SubmitPresentError
[src]

Formats the value using the given formatter. Read more

impl From<Error> for SubmitPresentError
[src]

Performs the conversion.