Return the [DatabaseRow], initializing it on demand if needed.
(&self, row_id: &RowId)
| 627 | |
| 628 | /// Return the [DatabaseRow], initializing it on demand if needed. |
| 629 | pub async fn get_database_row(&self, row_id: &RowId) -> Option<Arc<RwLock<DatabaseRow>>> { |
| 630 | self.body.block.get_database_row(row_id).await |
| 631 | } |
| 632 | |
| 633 | #[instrument(level = "debug", skip_all)] |
| 634 | pub async fn get_row_detail(&self, row_id: &RowId) -> Option<RowDetail> { |
no outgoing calls