pub struct ReservedMemoryRegion<'a> {
pub name: &'a str,
pub address: Option<GuestAddress>,
pub size: u64,
pub phandle: Option<u32>,
pub compatible: Option<&'a str>,
pub alignment: Option<u64>,
pub no_map: bool,
}Fields§
§name: &'a str§address: Option<GuestAddress>§size: u64§phandle: Option<u32>§compatible: Option<&'a str>§alignment: Option<u64>§no_map: boolAuto Trait Implementations§
impl<'a> Freeze for ReservedMemoryRegion<'a>
impl<'a> RefUnwindSafe for ReservedMemoryRegion<'a>
impl<'a> Send for ReservedMemoryRegion<'a>
impl<'a> Sync for ReservedMemoryRegion<'a>
impl<'a> Unpin for ReservedMemoryRegion<'a>
impl<'a> UnwindSafe for ReservedMemoryRegion<'a>
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