pub trait GraftRead {
// Required methods
fn snapshot(&self) -> &Snapshot;
fn page_count(&self) -> Result<PageCount, KernelErr>;
fn read_page(&self, pageidx: PageIdx) -> Result<Page, KernelErr>;
}Expand description
A type which can read from a Graft