Determine the size on disk of this commitlog.
(&self)
| 192 | |
| 193 | /// Determine the size on disk of this commitlog. |
| 194 | pub fn size_on_disk(&self) -> io::Result<SizeOnDisk> { |
| 195 | let inner = self.inner.read().unwrap(); |
| 196 | inner.repo.size_on_disk() |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | impl<T, R> Commitlog<T, R> |