Enum vulkano::sync::FenceWaitError [] [src]

pub enum FenceWaitError {
    OomError(OomError),
    Timeout,
    DeviceLostError,
}

Error that can be returned when waiting on a fence.

Variants

Not enough memory to complete the wait.

The specified timeout wasn't long enough.

The device has been lost.

Trait Implementations

impl Copy for FenceWaitError
[src]

impl Clone for FenceWaitError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for FenceWaitError
[src]

[src]

Formats the value using the given formatter. Read more

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

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

[src]

Formats the value using the given formatter. Read more

impl From<FenceWaitError> for FlushError
[src]

[src]

Performs the conversion.

Auto Trait Implementations