Skip to content

Commit

Permalink
[Hotfix] Implement Copy for InvalidTilesetError (#296)
Browse files Browse the repository at this point in the history
* Hotfix: Implement `Copy` for `InvalidTilesetError`

* Trigger CI
  • Loading branch information
aleokdev authored Jun 13, 2024
1 parent 6677c4d commit a521dd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ impl fmt::Display for CsvDecodingError {
impl std::error::Error for CsvDecodingError {}

/// Errors that can occur parsing a Tileset.
#[derive(Clone, Debug, PartialEq, Eq)]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[non_exhaustive]
pub enum InvalidTilesetError {
/// An invalid width or height (0) dimension was found in the input.
Expand Down

0 comments on commit a521dd3

Please sign in to comment.