pub trait CanBeManyView<T: Serialize + Clone> {
// Required method
fn to_many_view(
&self,
ctx: &Context,
ontology: String,
other_link: HashMap<String, String>,
) -> ManyView<T>;
}
pub trait CanBeManyView<T: Serialize + Clone> {
// Required method
fn to_many_view(
&self,
ctx: &Context,
ontology: String,
other_link: HashMap<String, String>,
) -> ManyView<T>;
}