diff --git a/Cargo.toml b/Cargo.toml index c1102dec9254bf55cd387aabd6a53167f52a05c3..c33252f8a4744055348d2b9062502eb55d0f39be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -375,7 +375,6 @@ borrowed_box = "allow" cast_abs_to_unsigned = "allow" derive_ord_xor_partial_ord = "allow" eq_op = "allow" -implied_bounds_in_impls = "allow" let_underscore_future = "allow" map_entry = "allow" never_loop = "allow" diff --git a/crates/workspace/src/pane.rs b/crates/workspace/src/pane.rs index 5248671ad24e266f5654cbb8b6ec66c8484a9538..493a99dbe7929c16e1eb156f6bfe592b3693188d 100644 --- a/crates/workspace/src/pane.rs +++ b/crates/workspace/src/pane.rs @@ -630,7 +630,7 @@ impl Pane { self.items.len() } - pub fn items(&self) -> impl Iterator> + DoubleEndedIterator { + pub fn items(&self) -> impl DoubleEndedIterator> { self.items.iter() }