diff options
author | metamuffin <metamuffin@disroot.org> | 2025-01-27 15:26:00 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-01-27 15:26:00 +0100 |
commit | c121d94f0b27bc04ffbdca55cd0939c1401d5a2e (patch) | |
tree | 67ac9da1f994c24b9a3e8e8d2adc2e334d2e34a5 /client/src/interfaces/profiler.rs | |
parent | 6b5c44d58e6c6d3df360396a0897290fc603699b (diff) | |
download | weareserver-c121d94f0b27bc04ffbdca55cd0939c1401d5a2e.tar weareserver-c121d94f0b27bc04ffbdca55cd0939c1401d5a2e.tar.bz2 weareserver-c121d94f0b27bc04ffbdca55cd0939c1401d5a2e.tar.zst |
clippy: fixes and ignores
Diffstat (limited to 'client/src/interfaces/profiler.rs')
-rw-r--r-- | client/src/interfaces/profiler.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/interfaces/profiler.rs b/client/src/interfaces/profiler.rs index b6c4698..541b5c5 100644 --- a/client/src/interfaces/profiler.rs +++ b/client/src/interfaces/profiler.rs @@ -38,7 +38,7 @@ impl Widget for &mut Profiler { .num_columns(2) .show(ui, |ui| { ui.label("Backend"); - ui.label(&self.idata.adapter_info.backend.to_string()); + ui.label(self.idata.adapter_info.backend.to_string()); ui.end_row(); ui.label("Name"); ui.label(&self.idata.adapter_info.name); |