pub trait InlineElementTableRO {
// Required methods
fn get(
&self,
id: &EntityId,
) -> Result<Option<InlineElement>, RepositoryError>;
fn get_multi(
&self,
ids: &[EntityId],
) -> Result<Vec<Option<InlineElement>>, RepositoryError>;
fn get_all(&self) -> Result<Vec<InlineElement>, RepositoryError>;
}