pub trait PageRepository {
    fn add(page: Page) -> PageId;
    fn delete(page_id: PageId) -> bool;
}

Required Methods§

Implementors§