Struct memory_pager::Page [] [src]

pub struct Page {
    pub offset: usize,
    pub buffer: Vec<u8>,
}

Memory pages returned by Pager.

Fields

Byte offset for the start of the Page relative to all other Page instances.

Buffer with capacity of size page_size.

Trait Implementations

impl Debug for Page
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Page

impl Sync for Page