Enum vulkano::buffer::sys::BufferCreationError [] [src]

pub enum BufferCreationError {
    AllocError(DeviceMemoryAllocError),
    SparseBindingFeatureNotEnabled,
    SparseResidencyBufferFeatureNotEnabled,
    SparseResidencyAliasedFeatureNotEnabled,
}

Error that can happen when creating a buffer.

Variants

Allocating memory failed.

Sparse binding was requested but the corresponding feature wasn't enabled.

Sparse residency was requested but the corresponding feature wasn't enabled.

Sparse aliasing was requested but the corresponding feature wasn't enabled.

Trait Implementations

impl Clone for BufferCreationError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for BufferCreationError
[src]

Formats the value using the given formatter.

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

impl Error for BufferCreationError
[src]

A short description of the error. Read more

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

impl Display for BufferCreationError
[src]

Formats the value using the given formatter. Read more

impl From<OomError> for BufferCreationError
[src]

Performs the conversion.

impl From<Error> for BufferCreationError
[src]

Performs the conversion.