(mut self, files: Vec<String>)
| 529 | /// Set the list of files modified in this turn. |
| 530 | #[must_use] |
| 531 | pub fn files_in_turn(mut self, files: Vec<String>) -> Self { |
| 532 | self.files_in_turn = files; |
| 533 | self |
| 534 | } |
| 535 | |
| 536 | /// Set the cumulative unique file count across the session. |
| 537 | #[must_use] |
no outgoing calls