Builder: set the source view to split from.
(mut self, source: impl Into<String>)
| 141 | |
| 142 | /// Builder: set the source view to split from. |
| 143 | pub fn with_source(mut self, source: impl Into<String>) -> Self { |
| 144 | self.source = Some(source.into()); |
| 145 | self |
| 146 | } |
| 147 | |
| 148 | /// Builder: set the switch flag. |
| 149 | pub fn with_switch(mut self, switch: bool) -> Self { |
no outgoing calls