rust: Run rustfmt with some experimental options

+ Sort and group the imports
+ Normalize and format comments (100 characters width)

Command used:

$ cargo +nightly fmt --

Acked-by: Steffen Eiden <seiden@linux.ibm.com>
Signed-off-by: Marc Hartmayer <marc@linux.ibm.com>
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
This commit is contained in:
Marc Hartmayer
2026-05-11 14:43:53 +02:00
committed by Jan Höppner
parent 3d5f75d6c3
commit f8fb9ce32a
120 changed files with 825 additions and 900 deletions
+5 -7
View File
@@ -5,14 +5,12 @@
//! AP support functions
//
use crate::{
utils::{pv_guest_bit_set, read_file_string, write_file},
Error, Result,
};
use std::{fmt, thread, time};
use regex::Regex;
use std::fmt;
use std::thread;
use std::time;
use crate::utils::{pv_guest_bit_set, read_file_string, write_file};
use crate::{Error, Result};
const PATH_SYS_DEVICES_AP: &str = "/sys/devices/ap";