membacking

Struct GuestMemoryBuilder

Source
pub struct GuestMemoryBuilder { /* private fields */ }
Expand description

A builder for GuestMemoryManager.

Implementations§

Source§

impl GuestMemoryBuilder

Source

pub fn new() -> Self

Returns a new builder.

Source

pub fn existing_backing(self, mapping: Option<SharedMemoryBacking>) -> Self

Specifies an existing memory backing to use.

Source

pub fn vtl0_alias_map(self, offset: Option<u64>) -> Self

Specifies the offset of the VTL0 alias map, if enabled for VTL2. This is a mirror of VTL0 memory into a high portion of the VM’s physical address space.

Source

pub fn pin_mappings(self, enable: bool) -> Self

Specify whether to pin mappings in memory. This is used to support device assignment for devices that require the IOMMU to be programmed for all addresses.

Source

pub fn prefetch_ram(self, enable: bool) -> Self

Specify whether to prefetch RAM mappings. This improves boot performance by reducing memory intercepts at the cost of pre-allocating all of RAM.

Source

pub fn x86_legacy_support(self, enable: bool) -> Self

Enables legacy x86 support.

When set, create separate RAM regions for the various low memory ranges that are special on x86 platforms. Specifically:

  1. Create a separate RAM region for the VGA VRAM window: 0xa0000-0xbffff.
  2. Create separate RAM regions within 0xc0000-0xfffff for control by PAM registers.

The caller can use RamVisibilityControl to adjust the visibility of these ranges.

Source

pub async fn build( self, mem_layout: &MemoryLayout, ) -> Result<GuestMemoryManager, MemoryBuildError>

Builds the memory backing, allocating memory if existing memory was not provided by existing_backing.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more