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]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SubmitPresentError
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for SubmitPresentError
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for SubmitPresentError
[src]

impl Error for SubmitPresentError
[src]

[src]

A short description of the error. Read more

[src]

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

impl Display for SubmitPresentError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Error> for SubmitPresentError
[src]

[src]

Performs the conversion.