Get the backing kvs data with snapshot fields (read-only)
(self)
| 225 | |
| 226 | @property |
| 227 | def data(self) -> KeyValueStore: |
| 228 | """Get the backing kvs data with snapshot fields (read-only)""" |
| 229 | assert self.has_contents |
| 230 | handle = core.BNReadSnapshotData(self.handle) |
| 231 | assert handle is not None |
| 232 | return KeyValueStore(handle=handle) |
| 233 | |
| 234 | def has_ancestor(self, other: 'Snapshot') -> bool: |
| 235 | """Determine if this snapshot has another as an ancestor""" |
nothing calls this directly
no test coverage detected