use std::path::PathBuf;
#[derive(Clone, Debug)]
pub struct BootInfo {
pub bios_boot: Option<BiosBootInfo>,
pub uefi_boot: Option<UefiBootInfo>,
}
#[derive(Clone, Debug)]
pub struct BiosBootInfo {
pub boot_catalog: PathBuf,
pub boot_image: PathBuf,
pub destination_in_iso: String,
}
#[derive(Clone, Debug)]
pub struct UefiBootInfo {
pub boot_image: PathBuf,
pub kernel_image: PathBuf,
pub destination_in_iso: String,
}