(dir: &Path)
| 658 | } |
| 659 | |
| 660 | pub fn is_dir_empty(dir: &Path) -> Result<bool> { |
| 661 | read_sort_dir(dir).map(|entries| entries.is_empty()) |
| 662 | } |
| 663 | |
| 664 | /// format the headers of this library that should include as a single String. |
| 665 | pub fn format_library_header_strings(deopt: &Deopt) -> &'static str { |
no test coverage detected