Enum mosaic::TileSetError[][src]

pub enum TileSetError {
    OutOfRange,
    TileNotFound,
}

Possible errors from TileSet operations.

Variants

The tile position to register was outside the tilesheet bounds.

Tile not found.

Trait Implementations

impl Debug for TileSetError
[src]

Formats the value using the given formatter. Read more

impl Clone for TileSetError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for TileSetError
[src]

impl Display for TileSetError
[src]

Formats the value using the given formatter. Read more

impl Error for TileSetError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations