(&self, name: S)
| 268 | /// * `name` - the name for the new [Workflow] |
| 269 | #[must_use] |
| 270 | pub fn clone_to<S: BnStrCompatible + Clone>(&self, name: S) -> Ref<Workflow> { |
| 271 | self.clone_to_with_root(name, "") |
| 272 | } |
| 273 | |
| 274 | /// Make a new unregistered [Workflow], copying all activities, within `root_activity`, and the execution strategy. |
| 275 | /// |