A utility struct that provides functionality for performing updates on an array of maps. This struct encapsulates the transaction and reference to an array to provide methods for inserting, updating, and deleting `AnyMap` entries.
| 76 | /// This struct encapsulates the transaction and reference to an array to provide methods |
| 77 | /// for inserting, updating, and deleting `AnyMap` entries. |
| 78 | pub struct ArrayMapUpdate<'a, 'b> { |
| 79 | array_ref: ArrayRef, |
| 80 | txn: &'a mut TransactionMut<'b>, |
| 81 | } |
| 82 | |
| 83 | impl<'a, 'b> ArrayMapUpdate<'a, 'b> { |
| 84 | /// Creates a new `ArrayMapUpdate` with a given transaction and array reference. |
nothing calls this directly
no outgoing calls
no test coverage detected