rendy_resource

Type Alias ImageCreationError

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

Alias for the error to create an image.

Aliased Type§

enum ImageCreationError {
    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.