Set MSRV to 1.71

This commit is contained in:
Jeremy Soller 2024-01-29 09:43:06 -07:00
parent 213ede371b
commit 1291a48d4d
No known key found for this signature in database
GPG key ID: D02FD439211AF56F
4 changed files with 45 additions and 40 deletions

View file

@ -45,24 +45,26 @@ where
}
#[allow(clippy::cast_precision_loss)]
fn variant_button_bounds(
&self,
state: &LocalState,
fn variant_button_bounds<'b>(
&'b self,
state: &'b LocalState,
mut bounds: Rectangle,
) -> impl Iterator<Item = (Entity, Rectangle)> {
) -> Box<dyn Iterator<Item = (Entity, Rectangle)> + 'b> {
let spacing = f32::from(self.spacing);
self.model
.order
.iter()
.copied()
.enumerate()
.map(move |(_nth, key)| {
let mut this_bounds = bounds;
this_bounds.height = state.internal_layout[0].height;
bounds.y += this_bounds.height + spacing;
(key, this_bounds)
})
Box::new(
self.model
.order
.iter()
.copied()
.enumerate()
.map(move |(_nth, key)| {
let mut this_bounds = bounds;
this_bounds.height = state.internal_layout[0].height;
bounds.y += this_bounds.height + spacing;
(key, this_bounds)
}),
)
}
#[allow(clippy::cast_precision_loss)]