pub trait SiteRepository {
// Required methods
fn create<'life0, 'async_trait>(
&'life0 mut self,
site: Box<dyn Site>,
) -> Pin<Box<dyn Future<Output = Box<dyn SiteId>> + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn read(&self, read_by: SiteReadOption) -> (&Box<dyn Site>, Box<dyn SiteId>);
fn delete(&self, site_id: Box<dyn Site>) -> bool;
}