Get the owning FileMetadata
(&self)
| 189 | |
| 190 | /// Get the owning FileMetadata |
| 191 | pub fn file(&self) -> Ref<FileMetadata> { |
| 192 | let result = unsafe { BNGetDatabaseFile(self.handle.as_ptr()) }; |
| 193 | assert!(!result.is_null()); |
| 194 | FileMetadata::ref_from_raw(result) |
| 195 | } |
| 196 | |
| 197 | /// Get the backing analysis cache kvs |
| 198 | pub fn analysis_cache(&self) -> Ref<KeyValueStore> { |
no outgoing calls