Renamed SyncResult -> SyncProgress

This commit is contained in:
daladim 2021-10-08 23:05:02 +02:00
parent f7ec5d29be
commit 04c8b3a2ee
2 changed files with 51 additions and 51 deletions

View file

@ -1,8 +1,8 @@
/// A counter of errors that happen during a sync
pub struct SyncResult {
pub struct SyncProgress {
n_errors: u32,
}
impl SyncResult {
impl SyncProgress {
pub fn new() -> Self {
Self { n_errors: 0 }
}