From ea8696eac2049fc19ea6ce5849922a002123ac37 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 30 Jan 2025 02:47:14 +0100 Subject: Use `Into` for `container::Id` arguments --- widget/src/container.rs | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'widget/src/container.rs') diff --git a/widget/src/container.rs b/widget/src/container.rs index a411a7d2..852481f1 100644 --- a/widget/src/container.rs +++ b/widget/src/container.rs @@ -107,8 +107,8 @@ where } /// Sets the [`Id`] of the [`Container`]. - pub fn id(mut self, id: Id) -> Self { - self.id = Some(id); + pub fn id(mut self, id: impl Into) -> Self { + self.id = Some(id.into()); self } @@ -480,9 +480,17 @@ impl From for widget::Id { } } +impl From<&'static str> for Id { + fn from(value: &'static str) -> Self { + Id::new(value) + } +} + /// Produces a [`Task`] that queries the visible screen bounds of the /// [`Container`] with the given [`Id`]. -pub fn visible_bounds(id: Id) -> Task> { +pub fn visible_bounds(id: impl Into) -> Task> { + let id = id.into(); + struct VisibleBounds { target: widget::Id, depth: usize, -- cgit