Get the stored representation of the kvs (read-only)
(self)
| 79 | |
| 80 | @property |
| 81 | def serialized_data(self) -> databuffer.DataBuffer: |
| 82 | """Get the stored representation of the kvs (read-only)""" |
| 83 | handle = core.BNGetKeyValueStoreSerializedData(self.handle) |
| 84 | assert handle is not None |
| 85 | return databuffer.DataBuffer(handle=handle) |
| 86 | |
| 87 | def begin_namespace(self, name: str): |
| 88 | """Begin storing new keys into a namespace""" |
nothing calls this directly
no test coverage detected