Insert only specific changes.
(mut self, changes: Vec<Hash>)
| 76 | |
| 77 | /// Insert only specific changes. |
| 78 | pub fn only_changes(mut self, changes: Vec<Hash>) -> Self { |
| 79 | self.only_changes = changes; |
| 80 | self |
| 81 | } |
| 82 | |
| 83 | /// Set whether to insert dependencies automatically. |
| 84 | pub fn with_dependencies(mut self, apply: bool) -> Self { |
no outgoing calls