Sets the task name
(mut self, name: String)
| 115 | |
| 116 | /// Sets the task name |
| 117 | pub fn name(mut self, name: String) -> Self { |
| 118 | self.name = Some(name); |
| 119 | self |
| 120 | } |
| 121 | |
| 122 | /// Sets the task type |
| 123 | pub fn task_type(mut self, task_type: String) -> Self { |
no outgoing calls