Method
create_entities
(
&mut self,
actor_uuid: ActorEntityUuid,
params: Vec<CreateEntityParams>,
)
Source from the content-addressed store, hash-verified
| 803 | |
| 804 | impl EntityStore for DatabaseApi<'_> { |
| 805 | async fn create_entities( |
| 806 | &mut self, |
| 807 | actor_uuid: ActorEntityUuid, |
| 808 | params: Vec<CreateEntityParams>, |
| 809 | ) -> Result<Vec<Entity>, Report<InsertionError>> { |
| 810 | self.store.create_entities(actor_uuid, params).await |
| 811 | } |
| 812 | |
| 813 | async fn validate_entities( |
| 814 | &self, |
Tested by
no test coverage detected