(mut self, writes: &[PassOutput])
| 103 | self.reads = reads.to_vec(); self |
| 104 | } |
| 105 | pub fn with_writes(mut self, writes: &[PassOutput]) -> Self { |
| 106 | self.writes = writes.to_vec(); self |
| 107 | } |
| 108 | pub fn with_after(mut self, after: &[&'static str]) -> Self { |
| 109 | self.after = after.to_vec(); self |
| 110 | } |
no outgoing calls