Struct random_access_memory::RandomAccessMemoryMethods [] [src]

pub struct RandomAccessMemoryMethods {
    pub page_size: usize,
    pub buffers: Vec<Vec<u8>>,
    // some fields omitted
}

Methods that have been implemented to provide synchronous access to memory buffers. These should generally be kept private, but exposed to prevent leaking internals.

Fields

The length length of each buffer.

The memory we read/write to.

Trait Implementations

impl Debug for RandomAccessMemoryMethods
[src]

[src]

Formats the value using the given formatter. Read more

impl RandomAccessMethods for RandomAccessMemoryMethods
[src]

[src]

Open the backend.

[src]

Write bytes at an offset to the backend.

[src]

Read a sequence of bytes at an offset from the backend.

[src]

Delete a sequence of bytes at an offset from the backend.

Auto Trait Implementations