Builder: set the source view to fork from.
(mut self, from: impl Into<String>)
| 230 | |
| 231 | /// Builder: set the source view to fork from. |
| 232 | pub fn with_from(mut self, from: impl Into<String>) -> Self { |
| 233 | self.from = Some(from.into()); |
| 234 | self |
| 235 | } |
| 236 | |
| 237 | /// Builder: set the empty flag. |
| 238 | pub fn with_empty(mut self, empty: bool) -> Self { |
no outgoing calls