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

#[repr(u32)]
pub enum SubmitBindSparseError { OomError(OomError), DeviceLost, }

Error that can happen when submitting the present prototype.

Variants

Not enough memory.

The connection to the device has been lost.

Trait Implementations

impl Copy for SubmitBindSparseError
[src]

impl Clone for SubmitBindSparseError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SubmitBindSparseError
[src]

Formats the value using the given formatter. Read more

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

impl Error for SubmitBindSparseError
[src]

This method is soft-deprecated. Read more

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

impl Display for SubmitBindSparseError
[src]

Formats the value using the given formatter. Read more

impl From<SubmitBindSparseError> for FlushError
[src]

Performs the conversion.

Auto Trait Implementations