Get the TTL (time-to-live) of the list files cache.
(&self)
| 434 | |
| 435 | /// Get the TTL (time-to-live) of the list files cache. |
| 436 | pub fn get_list_files_cache_ttl(&self) -> Option<Duration> { |
| 437 | self.list_files_cache.as_ref().and_then(|c| c.cache_ttl()) |
| 438 | } |
| 439 | |
| 440 | /// Get the file embedded metadata cache. |
| 441 | pub fn get_file_metadata_cache(&self) -> Arc<dyn FileMetadataCache> { |
no test coverage detected