Struct memory_pager::Page
[−]
[src]
pub struct Page { pub offset: usize, pub buffer: Vec<u8>, }
Memory pages returned by Pager
.
Fields
offset: usize
Byte offset for the start of the Page
relative to all other Page
instances.
buffer: Vec<u8>
Buffer with capacity of size page_size
.