summaryrefslogtreecommitdiffstats
path: root/src/app/widgets/process_table/proc_widget_data.rs
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2022-11-10 01:22:19 -0500
committerGitHub <noreply@github.com>2022-11-10 01:22:19 -0500
commit99fc5fc2c85b714c81ec6a7fca2615853e120caa (patch)
treef87e929adf6922872b6a1de2acfb62820052fc7f /src/app/widgets/process_table/proc_widget_data.rs
parentf5ec9191f270ffb4fc36e34836e931d3ef55a162 (diff)
refactor: run cargo +nightly fmt with group_imports (#885)
* refactor: add some disabled unstable fmt options * run cargo +nightly fmt with group_imports * separate out the cfg-specific imports for clarity
Diffstat (limited to 'src/app/widgets/process_table/proc_widget_data.rs')
-rw-r--r--src/app/widgets/process_table/proc_widget_data.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/app/widgets/process_table/proc_widget_data.rs b/src/app/widgets/process_table/proc_widget_data.rs
index 4957c87f..acb33af4 100644
--- a/src/app/widgets/process_table/proc_widget_data.rs
+++ b/src/app/widgets/process_table/proc_widget_data.rs
@@ -6,6 +6,7 @@ use std::{
use concat_string::concat_string;
use tui::{text::Text, widgets::Row};
+use super::proc_widget_column::ProcColumn;
use crate::{
app::data_harvester::processes::ProcessHarvest,
canvas::Painter,
@@ -15,8 +16,6 @@ use crate::{
Pid,
};
-use super::proc_widget_column::ProcColumn;
-
#[derive(Clone)]
enum IdType {
Name(String),