Update code for Rust 1.83.0 am: 99b760e706

Original change: https://android-review.googlesource.com/c/platform/tools/asuite/+/3451734

Change-Id: I157e40cbdd13bc1c221173abce92d692e8b9b76f
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/adevice/src/adevice.rs b/adevice/src/adevice.rs
index 4b634cf..12bda12 100644
--- a/adevice/src/adevice.rs
+++ b/adevice/src/adevice.rs
@@ -673,7 +673,6 @@
 /// Return all path components of file_path up to a passed partition.
 /// Given system/bin/logd and partition "system",
 /// return ["system/bin/logd", "system/bin"], not "system" or ""
-
 fn parents(file_path: &str, partitions: &[PathBuf]) -> Vec<PathBuf> {
     PathBuf::from(file_path)
         .ancestors()