Struct random_access_memory::SyncMethods [] [src]

pub struct SyncMethods {
    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 SyncMethods
[src]

[src]

Formats the value using the given formatter. Read more

impl SyncMethods for SyncMethods
[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

impl Send for SyncMethods

impl Sync for SyncMethods