Skip to main content

PageMap

Trait PageMap 

Source
pub trait PageMap {
    // Required method
    fn get_page(&self, id: &PageId) -> Option<&Page>;
}

Required Methods§

Source

fn get_page(&self, id: &PageId) -> Option<&Page>

Implementations on Foreign Types§

Source§

impl<S: BuildHasher> PageMap for HashMap<PageId, Arc<Page>, S>

Source§

fn get_page(&self, id: &PageId) -> Option<&Page>

Source§

impl<S: BuildHasher> PageMap for HashMap<PageId, Page, S>

Source§

fn get_page(&self, id: &PageId) -> Option<&Page>

Implementors§