summaryrefslogtreecommitdiffstats
path: root/core/src/length.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-08-17 16:09:25 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-08-17 16:09:25 +0200
commitb0705d2f4c06c13bcc4397ae1d4f29264c3e08c2 (patch)
tree5d5d707d4b44481e0c19e7d260176b529af62cda /core/src/length.rs
parent4425839aa421a80a8a0612ee2e15ece57b2c62b9 (diff)
downloadiced-b0705d2f4c06c13bcc4397ae1d4f29264c3e08c2.tar.gz
iced-b0705d2f4c06c13bcc4397ae1d4f29264c3e08c2.tar.bz2
iced-b0705d2f4c06c13bcc4397ae1d4f29264c3e08c2.zip
Fix latest `clippy` lints
Diffstat (limited to 'core/src/length.rs')
-rw-r--r--core/src/length.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/length.rs b/core/src/length.rs
index 186411a5..95ea6e0e 100644
--- a/core/src/length.rs
+++ b/core/src/length.rs
@@ -1,5 +1,5 @@
/// The strategy used to fill space in a specific dimension.
-#[derive(Debug, Clone, Copy, PartialEq, Hash)]
+#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum Length {
/// Fill all the remaining space
Fill,