(&self)
| 90 | |
| 91 | impl RepoStats { |
| 92 | pub fn total_size_mib(&self) -> f64 { |
| 93 | self.size_mib + self.size_pack_mib + self.size_garbage_mib |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | pub fn git_count_objects(git_dir: impl AsRef<OsStr>) -> Result<RepoStats> { |
no outgoing calls
no test coverage detected