tool: introduce some more whitespace

This commit is contained in:
nikstur 2023-09-14 12:38:40 +02:00
parent 143a000f36
commit ff442cd032
1 changed files with 3 additions and 0 deletions

View File

@ -11,10 +11,13 @@ use crate::generation::Generation;
pub trait EspPaths<const N: usize> {
/// Build an ESP path structure out of the ESP root directory
fn new(esp: impl AsRef<Path>) -> 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;
}