[][src]Struct wiggle_test::HostMemory

#[repr(align(4096))]pub struct HostMemory { /* fields omitted */ }

Methods

impl HostMemory[src]

pub fn new() -> Self[src]

pub fn mem_area_strat(align: u32) -> BoxedStrategy<MemArea>[src]

pub fn invert(regions: &MemAreas) -> MemAreas[src]

Takes a sorted list or memareas, and gives a sorted list of memareas covering the parts of memory not covered by the previous

pub fn byte_slice_strat(size: u32, exclude: &MemAreas) -> BoxedStrategy<MemArea>[src]

Trait Implementations

impl GuestMemory for HostMemory[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointee for T[src]

type Pointer = u32

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,