Struct linux_loader::start_info::hvm_memmap_table_entry
source · #[repr(C)]pub struct hvm_memmap_table_entry {
pub addr: u64,
pub size: u64,
pub type_: u32,
pub reserved: u32,
}
Fields§
§addr: u64
§size: u64
§type_: u32
§reserved: u32
Trait Implementations§
source§impl ByteValued for hvm_memmap_table_entry
impl ByteValued for hvm_memmap_table_entry
source§fn from_slice(data: &[u8]) -> Option<&Self>
fn from_slice(data: &[u8]) -> Option<&Self>
Converts a slice of raw data into a reference of
Self
. Read moresource§fn from_mut_slice(data: &mut [u8]) -> Option<&mut Self>
fn from_mut_slice(data: &mut [u8]) -> Option<&mut Self>
Converts a mutable slice of raw data into a mutable reference of
Self
. Read moresource§impl Clone for hvm_memmap_table_entry
impl Clone for hvm_memmap_table_entry
source§fn clone(&self) -> hvm_memmap_table_entry
fn clone(&self) -> hvm_memmap_table_entry
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 Debug for hvm_memmap_table_entry
impl Debug for hvm_memmap_table_entry
source§impl Default for hvm_memmap_table_entry
impl Default for hvm_memmap_table_entry
source§fn default() -> hvm_memmap_table_entry
fn default() -> hvm_memmap_table_entry
Returns the “default value” for a type. Read more
impl Copy for hvm_memmap_table_entry
Auto Trait Implementations§
impl RefUnwindSafe for hvm_memmap_table_entry
impl Send for hvm_memmap_table_entry
impl Sync for hvm_memmap_table_entry
impl Unpin for hvm_memmap_table_entry
impl UnwindSafe for hvm_memmap_table_entry
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