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

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

Error that can be returned when waiting on a fence.

Variants

OomError(OomError)

Not enough memory to complete the wait.

Timeout

The specified timeout wasn't long enough.

DeviceLostError

The device has been lost.

Trait Implementations

impl Eq for FenceWaitError
[src]

impl PartialEq for FenceWaitError
[src]

fn eq(&self, __arg_0: &FenceWaitError) -> bool

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

fn ne(&self, __arg_0: &FenceWaitError) -> bool

This method tests for !=.

impl Debug for FenceWaitError
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for FenceWaitError
[src]

fn clone(&self) -> FenceWaitError

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for FenceWaitError
[src]

impl Error for FenceWaitError
[src]

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>

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

impl Display for FenceWaitError
[src]

fn fmt(&self, fmt: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.

impl From<Error> for FenceWaitError
[src]

fn from(err: Error) -> FenceWaitError

Performs the conversion.