Enum vulkano::sync::FlushError [] [src]

pub enum FlushError {
    AccessError(AccessError),
    OomError(OomError),
    DeviceLost,
    SurfaceLost,
    OutOfDate,
    Timeout,
}

Error that can happen when creating a graphics pipeline.

Variants

Access to a resource has been denied.

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.

The flush operation needed to block, but the timeout has elapsed.

Trait Implementations

impl Clone for FlushError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for FlushError
[src]

[src]

Formats the value using the given formatter.

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

impl Error for FlushError
[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 FlushError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<AccessError> for FlushError
[src]

[src]

Performs the conversion.

impl From<SubmitPresentError> for FlushError
[src]

[src]

Performs the conversion.

impl From<SubmitCommandBufferError> for FlushError
[src]

[src]

Performs the conversion.

impl From<SubmitBindSparseError> for FlushError
[src]

[src]

Performs the conversion.

impl From<FenceWaitError> for FlushError
[src]

[src]

Performs the conversion.