tool: introduce some more whitespace
This commit is contained in:
parent
143a000f36
commit
ff442cd032
|
@ -11,10 +11,13 @@ use crate::generation::Generation;
|
||||||
pub trait EspPaths<const N: usize> {
|
pub trait EspPaths<const N: usize> {
|
||||||
/// Build an ESP path structure out of the ESP root directory
|
/// Build an ESP path structure out of the ESP root directory
|
||||||
fn new(esp: impl AsRef<Path>) -> Self;
|
fn new(esp: impl AsRef<Path>) -> Self;
|
||||||
|
|
||||||
/// Return the used file paths to store as garbage collection roots.
|
/// Return the used file paths to store as garbage collection roots.
|
||||||
fn iter(&self) -> std::array::IntoIter<&PathBuf, N>;
|
fn iter(&self) -> std::array::IntoIter<&PathBuf, N>;
|
||||||
|
|
||||||
/// Returns the path containing NixOS EFI binaries
|
/// Returns the path containing NixOS EFI binaries
|
||||||
fn nixos_path(&self) -> &Path;
|
fn nixos_path(&self) -> &Path;
|
||||||
|
|
||||||
/// Returns the path containing Linux EFI binaries
|
/// Returns the path containing Linux EFI binaries
|
||||||
fn linux_path(&self) -> &Path;
|
fn linux_path(&self) -> &Path;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue