(mut self, parameter: ProgramParameter)
| 52 | } |
| 53 | |
| 54 | pub fn with_parameter(mut self, parameter: ProgramParameter) -> Self { |
| 55 | self.parameters.push(parameter); |
| 56 | self |
| 57 | } |
| 58 | |
| 59 | pub fn with_step(mut self, step: ProgramStepTemplate) -> Self { |
| 60 | self.steps.push(step); |
no outgoing calls