Struct x86_64::bootparam::boot_params
source · #[repr(C, packed(1))]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; 40],
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; 40]
§edd_mbr_sig_buffer: [__u32; 16]
§e820_table: [boot_e820_entry; 128]
§_pad8: [__u8; 48]
§eddbuf: [edd_info; 6]
§_pad9: [__u8; 276]
Trait Implementations§
source§impl Clone for boot_params
impl Clone for boot_params
source§fn clone(&self) -> boot_params
fn clone(&self) -> boot_params
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for boot_params
impl Default for boot_params
source§impl FromBytes for boot_paramswhere
screen_info: FromBytes,
apm_bios_info: FromBytes,
[__u8; 4]: FromBytes,
__u64: FromBytes,
ist_info: FromBytes,
[__u8; 8]: FromBytes,
[__u8; 16]: FromBytes,
sys_desc_table: FromBytes,
olpc_ofw_header: FromBytes,
__u32: FromBytes,
[__u8; 116]: FromBytes,
edid_info: FromBytes,
efi_info: FromBytes,
__u8: FromBytes,
[__u8; 2]: FromBytes,
[__u8; 1]: FromBytes,
setup_header: FromBytes,
[__u8; 40]: FromBytes,
[__u32; 16]: FromBytes,
[boot_e820_entry; 128]: FromBytes,
[__u8; 48]: FromBytes,
[edd_info; 6]: FromBytes,
[__u8; 276]: FromBytes,
impl FromBytes for boot_paramswhere
screen_info: FromBytes,
apm_bios_info: FromBytes,
[__u8; 4]: FromBytes,
__u64: FromBytes,
ist_info: FromBytes,
[__u8; 8]: FromBytes,
[__u8; 16]: FromBytes,
sys_desc_table: FromBytes,
olpc_ofw_header: FromBytes,
__u32: FromBytes,
[__u8; 116]: FromBytes,
edid_info: FromBytes,
efi_info: FromBytes,
__u8: FromBytes,
[__u8; 2]: FromBytes,
[__u8; 1]: FromBytes,
setup_header: FromBytes,
[__u8; 40]: FromBytes,
[__u32; 16]: FromBytes,
[boot_e820_entry; 128]: FromBytes,
[__u8; 48]: FromBytes,
[edd_info; 6]: FromBytes,
[__u8; 276]: FromBytes,
§fn ref_from_bytes(
source: &[u8],
) -> Result<&Self, ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>where
Self: KnownLayout + Immutable,
fn ref_from_bytes(
source: &[u8],
) -> Result<&Self, ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>where
Self: KnownLayout + Immutable,
§fn ref_from_prefix(
source: &[u8],
) -> Result<(&Self, &[u8]), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>where
Self: KnownLayout + Immutable,
fn ref_from_prefix(
source: &[u8],
) -> Result<(&Self, &[u8]), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>where
Self: KnownLayout + Immutable,
§fn ref_from_suffix(
source: &[u8],
) -> Result<(&[u8], &Self), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>where
Self: Immutable + KnownLayout,
fn ref_from_suffix(
source: &[u8],
) -> Result<(&[u8], &Self), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>where
Self: Immutable + KnownLayout,
Interprets the suffix of the given bytes as a
&Self
. Read more§fn mut_from_bytes(
source: &mut [u8],
) -> Result<&mut Self, ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>where
Self: IntoBytes + KnownLayout,
fn mut_from_bytes(
source: &mut [u8],
) -> Result<&mut Self, ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>where
Self: IntoBytes + KnownLayout,
§fn mut_from_prefix(
source: &mut [u8],
) -> Result<(&mut Self, &mut [u8]), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>where
Self: IntoBytes + KnownLayout,
fn mut_from_prefix(
source: &mut [u8],
) -> Result<(&mut Self, &mut [u8]), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>where
Self: IntoBytes + KnownLayout,
§fn mut_from_suffix(
source: &mut [u8],
) -> Result<(&mut [u8], &mut Self), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>where
Self: IntoBytes + KnownLayout,
fn mut_from_suffix(
source: &mut [u8],
) -> Result<(&mut [u8], &mut Self), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>where
Self: IntoBytes + KnownLayout,
source§impl FromZeros for boot_paramswhere
screen_info: FromZeros,
apm_bios_info: FromZeros,
[__u8; 4]: FromZeros,
__u64: FromZeros,
ist_info: FromZeros,
[__u8; 8]: FromZeros,
[__u8; 16]: FromZeros,
sys_desc_table: FromZeros,
olpc_ofw_header: FromZeros,
__u32: FromZeros,
[__u8; 116]: FromZeros,
edid_info: FromZeros,
efi_info: FromZeros,
__u8: FromZeros,
[__u8; 2]: FromZeros,
[__u8; 1]: FromZeros,
setup_header: FromZeros,
[__u8; 40]: FromZeros,
[__u32; 16]: FromZeros,
[boot_e820_entry; 128]: FromZeros,
[__u8; 48]: FromZeros,
[edd_info; 6]: FromZeros,
[__u8; 276]: FromZeros,
impl FromZeros for boot_paramswhere
screen_info: FromZeros,
apm_bios_info: FromZeros,
[__u8; 4]: FromZeros,
__u64: FromZeros,
ist_info: FromZeros,
[__u8; 8]: FromZeros,
[__u8; 16]: FromZeros,
sys_desc_table: FromZeros,
olpc_ofw_header: FromZeros,
__u32: FromZeros,
[__u8; 116]: FromZeros,
edid_info: FromZeros,
efi_info: FromZeros,
__u8: FromZeros,
[__u8; 2]: FromZeros,
[__u8; 1]: FromZeros,
setup_header: FromZeros,
[__u8; 40]: FromZeros,
[__u32; 16]: FromZeros,
[boot_e820_entry; 128]: FromZeros,
[__u8; 48]: FromZeros,
[edd_info; 6]: FromZeros,
[__u8; 276]: FromZeros,
source§impl IntoBytes for boot_paramswhere
screen_info: IntoBytes,
apm_bios_info: IntoBytes,
[__u8; 4]: IntoBytes,
__u64: IntoBytes,
ist_info: IntoBytes,
[__u8; 8]: IntoBytes,
[__u8; 16]: IntoBytes,
sys_desc_table: IntoBytes,
olpc_ofw_header: IntoBytes,
__u32: IntoBytes,
[__u8; 116]: IntoBytes,
edid_info: IntoBytes,
efi_info: IntoBytes,
__u8: IntoBytes,
[__u8; 2]: IntoBytes,
[__u8; 1]: IntoBytes,
setup_header: IntoBytes,
[__u8; 40]: IntoBytes,
[__u32; 16]: IntoBytes,
[boot_e820_entry; 128]: IntoBytes,
[__u8; 48]: IntoBytes,
[edd_info; 6]: IntoBytes,
[__u8; 276]: IntoBytes,
impl IntoBytes for boot_paramswhere
screen_info: IntoBytes,
apm_bios_info: IntoBytes,
[__u8; 4]: IntoBytes,
__u64: IntoBytes,
ist_info: IntoBytes,
[__u8; 8]: IntoBytes,
[__u8; 16]: IntoBytes,
sys_desc_table: IntoBytes,
olpc_ofw_header: IntoBytes,
__u32: IntoBytes,
[__u8; 116]: IntoBytes,
edid_info: IntoBytes,
efi_info: IntoBytes,
__u8: IntoBytes,
[__u8; 2]: IntoBytes,
[__u8; 1]: IntoBytes,
setup_header: IntoBytes,
[__u8; 40]: IntoBytes,
[__u32; 16]: IntoBytes,
[boot_e820_entry; 128]: IntoBytes,
[__u8; 48]: IntoBytes,
[edd_info; 6]: IntoBytes,
[__u8; 276]: IntoBytes,
§fn as_mut_bytes(&mut self) -> &mut [u8] ⓘwhere
Self: FromBytes,
fn as_mut_bytes(&mut self) -> &mut [u8] ⓘwhere
Self: FromBytes,
Gets the bytes of this value mutably. Read more
§fn write_to(&self, dst: &mut [u8]) -> Result<(), SizeError<&Self, &mut [u8]>>where
Self: Immutable,
fn write_to(&self, dst: &mut [u8]) -> Result<(), SizeError<&Self, &mut [u8]>>where
Self: Immutable,
source§impl KnownLayout for boot_params
impl KnownLayout for boot_params
§type PointerMetadata = <[u8; 276] as KnownLayout>::PointerMetadata
type PointerMetadata = <[u8; 276] as KnownLayout>::PointerMetadata
The type of metadata stored in a pointer to
Self
. Read moresource§impl TryFromBytes for boot_paramswhere
screen_info: TryFromBytes,
apm_bios_info: TryFromBytes,
[__u8; 4]: TryFromBytes,
__u64: TryFromBytes,
ist_info: TryFromBytes,
[__u8; 8]: TryFromBytes,
[__u8; 16]: TryFromBytes,
sys_desc_table: TryFromBytes,
olpc_ofw_header: TryFromBytes,
__u32: TryFromBytes,
[__u8; 116]: TryFromBytes,
edid_info: TryFromBytes,
efi_info: TryFromBytes,
__u8: TryFromBytes,
[__u8; 2]: TryFromBytes,
[__u8; 1]: TryFromBytes,
setup_header: TryFromBytes,
[__u8; 40]: TryFromBytes,
[__u32; 16]: TryFromBytes,
[boot_e820_entry; 128]: TryFromBytes,
[__u8; 48]: TryFromBytes,
[edd_info; 6]: TryFromBytes,
[__u8; 276]: TryFromBytes,
impl TryFromBytes for boot_paramswhere
screen_info: TryFromBytes,
apm_bios_info: TryFromBytes,
[__u8; 4]: TryFromBytes,
__u64: TryFromBytes,
ist_info: TryFromBytes,
[__u8; 8]: TryFromBytes,
[__u8; 16]: TryFromBytes,
sys_desc_table: TryFromBytes,
olpc_ofw_header: TryFromBytes,
__u32: TryFromBytes,
[__u8; 116]: TryFromBytes,
edid_info: TryFromBytes,
efi_info: TryFromBytes,
__u8: TryFromBytes,
[__u8; 2]: TryFromBytes,
[__u8; 1]: TryFromBytes,
setup_header: TryFromBytes,
[__u8; 40]: TryFromBytes,
[__u32; 16]: TryFromBytes,
[boot_e820_entry; 128]: TryFromBytes,
[__u8; 48]: TryFromBytes,
[edd_info; 6]: TryFromBytes,
[__u8; 276]: TryFromBytes,
§fn try_ref_from_bytes(
source: &[u8],
) -> Result<&Self, ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: KnownLayout + Immutable,
fn try_ref_from_bytes(
source: &[u8],
) -> Result<&Self, ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: KnownLayout + Immutable,
§fn try_ref_from_prefix(
source: &[u8],
) -> Result<(&Self, &[u8]), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: KnownLayout + Immutable,
fn try_ref_from_prefix(
source: &[u8],
) -> Result<(&Self, &[u8]), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: KnownLayout + Immutable,
§fn try_ref_from_suffix(
source: &[u8],
) -> Result<(&[u8], &Self), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: KnownLayout + Immutable,
fn try_ref_from_suffix(
source: &[u8],
) -> Result<(&[u8], &Self), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: KnownLayout + Immutable,
§fn try_mut_from_bytes(
bytes: &mut [u8],
) -> Result<&mut Self, ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>where
Self: KnownLayout,
fn try_mut_from_bytes(
bytes: &mut [u8],
) -> Result<&mut Self, ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>where
Self: KnownLayout,
§fn try_mut_from_prefix(
source: &mut [u8],
) -> Result<(&mut Self, &mut [u8]), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>where
Self: KnownLayout,
fn try_mut_from_prefix(
source: &mut [u8],
) -> Result<(&mut Self, &mut [u8]), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>where
Self: KnownLayout,
§fn try_mut_from_suffix(
source: &mut [u8],
) -> Result<(&mut [u8], &mut Self), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>where
Self: KnownLayout,
fn try_mut_from_suffix(
source: &mut [u8],
) -> Result<(&mut [u8], &mut Self), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>where
Self: KnownLayout,
§fn try_read_from_bytes(
source: &[u8],
) -> Result<Self, ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_bytes(
source: &[u8],
) -> Result<Self, ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
§fn try_read_from_prefix(
source: &[u8],
) -> Result<(Self, &[u8]), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_prefix(
source: &[u8],
) -> Result<(Self, &[u8]), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
§fn try_read_from_suffix(
source: &[u8],
) -> Result<(&[u8], Self), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_suffix(
source: &[u8],
) -> Result<(&[u8], Self), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
impl Copy for boot_params
impl Immutable for boot_paramswhere
screen_info: Immutable,
apm_bios_info: Immutable,
[__u8; 4]: Immutable,
__u64: Immutable,
ist_info: Immutable,
[__u8; 8]: Immutable,
[__u8; 16]: Immutable,
sys_desc_table: Immutable,
olpc_ofw_header: Immutable,
__u32: Immutable,
[__u8; 116]: Immutable,
edid_info: Immutable,
efi_info: Immutable,
__u8: Immutable,
[__u8; 2]: Immutable,
[__u8; 1]: Immutable,
setup_header: Immutable,
[__u8; 40]: Immutable,
[__u32; 16]: Immutable,
[boot_e820_entry; 128]: Immutable,
[__u8; 48]: Immutable,
[edd_info; 6]: Immutable,
[__u8; 276]: Immutable,
Auto Trait Implementations§
impl Freeze for boot_params
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§
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
source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.