Retrieve a complete file with all metadata and lines.
(txn: &mut T, path: &str)
| 410 | |
| 411 | /// Retrieve a complete file with all metadata and lines. |
| 412 | pub fn get_file<T: MutTxnT>(txn: &mut T, path: &str) -> PristineResult<Option<File>> { |
| 413 | get_file_with_options(txn, path, &RetrievalOptions::default()) |
| 414 | } |
| 415 | |
| 416 | /// Retrieve a complete file with options. |
| 417 | pub fn get_file_with_options<T: MutTxnT>( |
nothing calls this directly
no test coverage detected