(
self,
)
| 578 | /// A tuple of (actions, contents, updatables). |
| 579 | #[allow(clippy::type_complexity)] |
| 580 | pub fn into_parts( |
| 581 | self, |
| 582 | ) -> ( |
| 583 | Vec<GraphOp<Option<Hash>>>, |
| 584 | Vec<u8>, |
| 585 | HashMap<usize, InodeUpdate>, |
| 586 | ) { |
| 587 | (self.actions, self.contents, self.updatables) |
| 588 | } |
| 589 | } |
| 590 | |
| 591 | /// Statistics about a recording session. |
no outgoing calls