zed: Reduce clones (#30550)

A collection of small patches that reduce clones. Mostly by using owned
iterators where possible.

Release Notes:

- N/A
This commit is contained in:
tidely 2025-05-12 13:09:23 +03:00 committed by GitHub
parent f0f0a52793
commit 8000151aa9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 22 additions and 23 deletions

View file

@ -1238,12 +1238,12 @@ impl Render for LspLogToolbarItemView {
}
});
let available_language_servers: Vec<_> = menu_rows
.iter()
.into_iter()
.map(|row| {
(
row.server_id,
row.server_name.clone(),
row.worktree_root_name.clone(),
row.server_name,
row.worktree_root_name,
row.selected_entry,
)
})