From ff442cd03266f8b982a7eb7f40c38c88c62d1f7d Mon Sep 17 00:00:00 2001 From: nikstur Date: Thu, 14 Sep 2023 12:38:40 +0200 Subject: [PATCH] tool: introduce some more whitespace --- rust/tool/shared/src/esp.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rust/tool/shared/src/esp.rs b/rust/tool/shared/src/esp.rs index 7a66207..27cd071 100644 --- a/rust/tool/shared/src/esp.rs +++ b/rust/tool/shared/src/esp.rs @@ -11,10 +11,13 @@ use crate::generation::Generation; pub trait EspPaths { /// Build an ESP path structure out of the ESP root directory fn new(esp: impl AsRef) -> Self; + /// Return the used file paths to store as garbage collection roots. fn iter(&self) -> std::array::IntoIter<&PathBuf, N>; + /// Returns the path containing NixOS EFI binaries fn nixos_path(&self) -> &Path; + /// Returns the path containing Linux EFI binaries fn linux_path(&self) -> &Path; }