pub trait NodeStore<IdN> {
type R<'a>
where Self: 'a;
// Required method
fn resolve(&self, id: &IdN) -> Self::R<'_>;
}
pub trait NodeStore<IdN> {
type R<'a>
where Self: 'a;
// Required method
fn resolve(&self, id: &IdN) -> Self::R<'_>;
}