Skip to main content

InlineElementTableRO

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>;
}

Required Methods§

Implementors§