Complete 100% function doc coverage

This commit is contained in:
2026-06-01 17:14:02 +02:00
parent ee7d1b4231
commit 8c3f0e2fd3
7 changed files with 58 additions and 10 deletions
+2
View File
@@ -478,6 +478,7 @@ fn copy_save_files(
Ok(())
}
/// Recursively copy a directory tree.
fn copy_recursive(
src: &Path,
dest: &Path,
@@ -526,6 +527,7 @@ fn verify_backup(src: &Path, dest: &Path) -> bool {
true
}
/// List subdirectories whose names begin with a given prefix.
fn list_subdirs(root: &Path, prefix: &str) -> Vec<PathBuf> {
if !root.exists() {
return Vec::new();