]> git.proxmox.com Git - pve-installer.git/commitdiff
tree-wide: run rustfmt, fix clippy warnings
authorChristoph Heiss <c.heiss@proxmox.com>
Thu, 14 Nov 2024 14:15:27 +0000 (15:15 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 14 Nov 2024 19:52:18 +0000 (20:52 +0100)
No functional changes.

Signed-off-by: Christoph Heiss <c.heiss@proxmox.com>
proxmox-auto-install-assistant/src/main.rs
proxmox-auto-installer/tests/parse-answer.rs
proxmox-installer-common/src/setup.rs
proxmox-tui-installer/src/views/mod.rs

index bc7d5d850467c721e97b9fdf97db85bdedd97782..da1ebdac43229dc3d85de9caaa4e39b643142917 100644 (file)
@@ -474,7 +474,7 @@ fn get_disks() -> Result<BTreeMap<String, BTreeMap<String, String>>> {
             }
         }
 
-        let output = match get_udev_properties(&entry.path()) {
+        let output = match get_udev_properties(entry.path()) {
             Ok(output) => output,
             Err(err) => {
                 eprint!("{err}");
@@ -522,7 +522,7 @@ fn get_nics() -> Result<BTreeMap<String, BTreeMap<String, String>>> {
     for link in links {
         let path = format!("/sys/class/net/{link}");
 
-        let output = match get_udev_properties(&PathBuf::from(path)) {
+        let output = match get_udev_properties(PathBuf::from(path)) {
             Ok(output) => output,
             Err(err) => {
                 eprint!("{err}");
index 0e5d6e78f613788d0a24327d4c7e7d4a72164814..65f8c1edf99f915c70ac9ed3b40b31056109f122 100644 (file)
@@ -50,7 +50,7 @@ pub fn setup_test_basic(path: impl AsRef<Path>) -> (SetupInfo, LocaleInfo, Runti
 fn test_parse_answers() {
     let path = get_test_resource_path().unwrap();
     let (setup_info, locales, runtime_info, udev_info) = setup_test_basic(&path);
-    let mut tests_path = path.clone();
+    let mut tests_path = path;
     tests_path.push("parse_answer");
     let test_dir = fs::read_dir(tests_path.clone()).unwrap();
 
index cd1e8b4bde377d1dbdc2139ff1cdb7ee2761f30b..79b17ed3abe639183212ed2f93a9bd80e081076b 100644 (file)
@@ -12,7 +12,10 @@ use std::{
 use serde::{de, Deserialize, Deserializer, Serialize, Serializer};
 
 use crate::{
-    options::{BtrfsBootdiskOptions, BtrfsCompressOption, Disk, FsType, ZfsBootdiskOptions, ZfsChecksumOption, ZfsCompressOption},
+    options::{
+        BtrfsBootdiskOptions, BtrfsCompressOption, Disk, FsType, ZfsBootdiskOptions,
+        ZfsChecksumOption, ZfsCompressOption,
+    },
     utils::CidrAddress,
 };
 
index 673905f109cb3ac6284a8ca66e8fc1225e68a5eb..b0285439e081085fe11af06bbb4e09fc12b5bd3f 100644 (file)
@@ -182,7 +182,7 @@ impl<T: Copy + ToString + FromStr + PartialOrd> NumericEditView<T> {
     ///
     /// # Arguments
     /// * `content` - New, stringified content for the inner [`EditView`]. Must be a valid value
-    /// according to the containet type `T`.
+    ///               according to the container type `T`.
     fn content_inner(mut self, content: &str) -> Self {
         let mut inner = EditView::new();
         std::mem::swap(self.inner_mut(), &mut inner);