summaryrefslogtreecommitdiffstats
path: root/style/src/text.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-07-09 18:03:59 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-07-09 18:03:59 +0200
commit2f76a10a1d3617e414fb33c0c6cd5cb7782197ad (patch)
treec5c1d4e9e29752abc15d1f3559369e42c1bbb772 /style/src/text.rs
parent33a24b58210c88571f789ee27495e3ee3a55e3a4 (diff)
downloadiced-2f76a10a1d3617e414fb33c0c6cd5cb7782197ad.tar.gz
iced-2f76a10a1d3617e414fb33c0c6cd5cb7782197ad.tar.bz2
iced-2f76a10a1d3617e414fb33c0c6cd5cb7782197ad.zip
Fix further `clippy` lints
... and explicitly annotate crates as well.
Diffstat (limited to 'style/src/text.rs')
-rw-r--r--style/src/text.rs8
1 files changed, 1 insertions, 7 deletions
diff --git a/style/src/text.rs b/style/src/text.rs
index 69a4ed85..6e3aeef8 100644
--- a/style/src/text.rs
+++ b/style/src/text.rs
@@ -6,13 +6,7 @@ pub trait StyleSheet {
fn appearance(&self, style: Self::Style) -> Appearance;
}
-#[derive(Debug, Clone, Copy)]
+#[derive(Debug, Clone, Copy, Default)]
pub struct Appearance {
pub color: Option<Color>,
}
-
-impl Default for Appearance {
- fn default() -> Self {
- Self { color: None }
- }
-}