rendy_resource

Type Alias BufferCreationError

Source
pub type BufferCreationError = CreationError<CreationError>;
Expand description

Alias for the error to create a buffer.

Aliased Type§

enum BufferCreationError {
    Create(CreationError),
    Allocate(HeapsError),
    Bind(BindError),
}

Variants§

§

Create(CreationError)

Failed to create an object.

§

Allocate(HeapsError)

Failed to allocate memory.

§

Bind(BindError)

Failed to bind object memory.