summaryrefslogtreecommitdiff
path: root/src/lowlevel/data.rs
diff options
context:
space:
mode:
authorLawnCable <git@lawncable.net>2022-04-15 08:37:06 +0200
committerLawnCable <git@lawncable.net>2022-04-15 08:37:06 +0200
commitbbeb30c9817327f8c6fc7e50580f3e5f567dfafe (patch)
treea5d65e02dbc49c70e24d3a675e1b017244427d0e /src/lowlevel/data.rs
parent28918b3268d72d013b20bb2b5ba67422bbf7ff43 (diff)
downloadfast-tiled.rs-bbeb30c9817327f8c6fc7e50580f3e5f567dfafe.tar.gz
fast-tiled.rs-bbeb30c9817327f8c6fc7e50580f3e5f567dfafe.tar.bz2
fast-tiled.rs-bbeb30c9817327f8c6fc7e50580f3e5f567dfafe.tar.xz
fast-tiled.rs-bbeb30c9817327f8c6fc7e50580f3e5f567dfafe.zip
do cargo clippy fixes
Diffstat (limited to 'src/lowlevel/data.rs')
-rw-r--r--src/lowlevel/data.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lowlevel/data.rs b/src/lowlevel/data.rs
index 59a0b3e..40afa74 100644
--- a/src/lowlevel/data.rs
+++ b/src/lowlevel/data.rs
@@ -2,9 +2,9 @@
/// The encoding used to encode the tile layer data. When used, it can be “base64” and “csv” at the moment.
pub enum Encoding {
/// Plain XML based, in <tile> tags
- XML,
+ Xml,
Base64,
- CSV,
+ Csv,
}
#[derive(Debug, PartialEq)]
/// The compression used to compress the tile layer data.