summaryrefslogtreecommitdiffstats
path: root/lazy/src/pure
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 /lazy/src/pure
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 'lazy/src/pure')
-rw-r--r--lazy/src/pure/component.rs4
-rw-r--r--lazy/src/pure/responsive.rs2
2 files changed, 3 insertions, 3 deletions
diff --git a/lazy/src/pure/component.rs b/lazy/src/pure/component.rs
index 9b29b628..b8370263 100644
--- a/lazy/src/pure/component.rs
+++ b/lazy/src/pure/component.rs
@@ -43,7 +43,7 @@ pub trait Component<Message, Renderer> {
/// Produces the widgets of the [`Component`], which may trigger an [`Event`](Component::Event)
/// on user interaction.
- fn view(&self, state: &Self::State) -> Element<Self::Event, Renderer>;
+ fn view(&self, state: &Self::State) -> Element<'_, Self::Event, Renderer>;
}
/// Turns an implementor of [`Component`] into an [`Element`] that can be
@@ -382,7 +382,7 @@ where
layout: Layout<'_>,
cursor_position: Point,
) {
- self.with_overlay_maybe(|overlay| {
+ let _ = self.with_overlay_maybe(|overlay| {
overlay.draw(renderer, theme, style, layout, cursor_position);
});
}
diff --git a/lazy/src/pure/responsive.rs b/lazy/src/pure/responsive.rs
index 96b89fd6..d156f805 100644
--- a/lazy/src/pure/responsive.rs
+++ b/lazy/src/pure/responsive.rs
@@ -341,7 +341,7 @@ where
layout: Layout<'_>,
cursor_position: Point,
) {
- self.with_overlay_maybe(|overlay| {
+ let _ = self.with_overlay_maybe(|overlay| {
overlay.draw(renderer, theme, style, layout, cursor_position);
});
}