Struct dbs_boot::bootparam::boot_params
source · [−]#[repr(C, packed)]pub struct boot_params {Show 34 fields
pub screen_info: screen_info,
pub apm_bios_info: apm_bios_info,
pub _pad2: [__u8; 4],
pub tboot_addr: __u64,
pub ist_info: ist_info,
pub acpi_rsdp_addr: __u64,
pub _pad3: [__u8; 8],
pub hd0_info: [__u8; 16],
pub hd1_info: [__u8; 16],
pub sys_desc_table: sys_desc_table,
pub olpc_ofw_header: olpc_ofw_header,
pub ext_ramdisk_image: __u32,
pub ext_ramdisk_size: __u32,
pub ext_cmd_line_ptr: __u32,
pub _pad4: [__u8; 116],
pub edid_info: edid_info,
pub efi_info: efi_info,
pub alt_mem_k: __u32,
pub scratch: __u32,
pub e820_entries: __u8,
pub eddbuf_entries: __u8,
pub edd_mbr_sig_buf_entries: __u8,
pub kbd_status: __u8,
pub secure_boot: __u8,
pub _pad5: [__u8; 2],
pub sentinel: __u8,
pub _pad6: [__u8; 1],
pub hdr: setup_header,
pub _pad7: [__u8; 36],
pub edd_mbr_sig_buffer: [__u32; 16],
pub e820_table: [boot_e820_entry; 128],
pub _pad8: [__u8; 48],
pub eddbuf: [edd_info; 6],
pub _pad9: [__u8; 276],
}
Fields
screen_info: screen_info
apm_bios_info: apm_bios_info
_pad2: [__u8; 4]
tboot_addr: __u64
ist_info: ist_info
acpi_rsdp_addr: __u64
_pad3: [__u8; 8]
hd0_info: [__u8; 16]
hd1_info: [__u8; 16]
sys_desc_table: sys_desc_table
olpc_ofw_header: olpc_ofw_header
ext_ramdisk_image: __u32
ext_ramdisk_size: __u32
ext_cmd_line_ptr: __u32
_pad4: [__u8; 116]
edid_info: edid_info
efi_info: efi_info
alt_mem_k: __u32
scratch: __u32
e820_entries: __u8
eddbuf_entries: __u8
edd_mbr_sig_buf_entries: __u8
kbd_status: __u8
secure_boot: __u8
_pad5: [__u8; 2]
sentinel: __u8
_pad6: [__u8; 1]
hdr: setup_header
_pad7: [__u8; 36]
edd_mbr_sig_buffer: [__u32; 16]
e820_table: [boot_e820_entry; 128]
_pad8: [__u8; 48]
eddbuf: [edd_info; 6]
_pad9: [__u8; 276]
Trait Implementations
sourceimpl Clone for boot_params
impl Clone for boot_params
sourcefn clone(&self) -> boot_params
fn clone(&self) -> boot_params
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Default for boot_params
impl Default for boot_params
impl Copy for boot_params
Auto Trait Implementations
impl RefUnwindSafe for boot_params
impl Send for boot_params
impl Sync for boot_params
impl Unpin for boot_params
impl UnwindSafe for boot_params
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more