Skip to content

Commit

Permalink
chore: make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
madonuko committed Sep 19, 2024
1 parent d45e9d0 commit 1fd8ed1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,7 @@ pub trait ImageBuilder {
) -> Result<()>;
}
/// Creates a disk image, then installs to it
#[allow(dead_code)]
pub struct DiskImageBuilder {
pub image: PathBuf,
pub bootloader: Bootloader,
Expand Down Expand Up @@ -500,6 +501,7 @@ impl ImageBuilder for DiskImageBuilder {
}

/// Installs directly to a device
#[allow(dead_code)]
pub struct DeviceInstaller {
pub device: PathBuf,
pub bootloader: Bootloader,
Expand All @@ -518,6 +520,7 @@ impl ImageBuilder for DeviceInstaller {
}

/// Installs as a raw chroot
#[allow(dead_code)]
pub struct FsBuilder {
pub bootloader: Bootloader,
pub root_builder: Box<dyn RootBuilder>,
Expand Down

0 comments on commit 1fd8ed1

Please sign in to comment.