Finishes building and returns the result.
(self)
| 339 | |
| 340 | /// Finishes building and returns the result. |
| 341 | pub fn finish(self) -> CrdtChangeResult { |
| 342 | CrdtChangeResult { |
| 343 | file_ops: self.file_ops, |
| 344 | content: self.content, |
| 345 | stats: self.stats, |
| 346 | } |
| 347 | } |
| 348 | |
| 349 | /// Returns the current statistics. |
| 350 | pub fn current_stats(&self) -> &CrdtBuildStats { |
no outgoing calls