cargo fmt

This commit is contained in:
weisd
2024-11-03 10:05:50 +08:00
parent c3ef8bf5cd
commit d4a220bddc
4 changed files with 116 additions and 121 deletions
+2 -2
View File
@@ -426,9 +426,9 @@ pub fn is_all_not_found(errs: &[Option<Error>]) -> bool {
if let Some(err) = err {
if let Some(err) = err.downcast_ref::<DiskError>() {
match err {
DiskError::FileNotFound | DiskError::VolumeNotFound | &DiskError::FileVersionNotFound =>{
DiskError::FileNotFound | DiskError::VolumeNotFound | &DiskError::FileVersionNotFound => {
continue;
},
}
_ => return false,
}
}