pub struct BootImage {
pub bootable: bool,
pub media_type: BootMediaType,
pub load_segment: u16,
pub system_type: u8,
pub sector_count: u16,
pub load_rba: u32,
pub platform: BootPlatform,
}Expand description
Boot image information (El Torito)
Fields§
§bootable: boolBootable flag
media_type: BootMediaTypeBoot media type
load_segment: u16Load segment (x86)
system_type: u8System type
sector_count: u16Sector count
load_rba: u32Virtual disk LBA
platform: BootPlatformPlatform ID
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BootImage
impl RefUnwindSafe for BootImage
impl Send for BootImage
impl Sync for BootImage
impl Unpin for BootImage
impl UnwindSafe for BootImage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more