add comments (#33226)

This commit is contained in:
Jeff Washington (jwash) 2023-09-12 13:51:27 -07:00 committed by GitHub
parent bdf7207eec
commit 3ffd78f2d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -630,7 +630,9 @@ struct GenerateIndexTimings {
#[derive(Default, Debug, PartialEq, Eq)]
struct StorageSizeAndCount {
/// total size stored, including both alive and dead bytes
pub stored_size: usize,
/// number of accounts in the storage including both alive and dead accounts
pub count: usize,
}
type StorageSizeAndCountMap = DashMap<AppendVecId, StorageSizeAndCount>;