Look up a view by its internal ID (delegates to `ViewTxnT`).
(&self, id: u64)
| 119 | |
| 120 | /// Look up a view by its internal ID (delegates to `ViewTxnT`). |
| 121 | fn get_view_by_id(&self, id: u64) -> Result<Option<ViewState>, PristineError> { |
| 122 | // Default implementation delegates to ViewTxnT (which MutTxnT: ViewTxnT) |
| 123 | ViewTxnT::get_view_by_id(self, id) |
| 124 | } |
| 125 | |
| 126 | /// Record a change in a view. |
| 127 | /// |
no outgoing calls
no test coverage detected