UntypedMem

Trait UntypedMem 

Source
pub trait UntypedMem {
    // Required methods
    exec fn reader(&self) -> VmReader<'_>;
    exec fn writer(&self) -> VmWriter<'_>;
}
Expand description

A physical memory range that is untyped.

Untyped frames or segments can be safely read and written by the kernel or the user.

Required Methods§

Source

exec fn reader(&self) -> VmReader<'_>

Borrows a reader that can read the untyped memory.

Source

exec fn writer(&self) -> VmWriter<'_>

Borrows a writer that can write the untyped memory.

Implementors§