Builder: set the empty flag.
(mut self, empty: bool)
| 236 | |
| 237 | /// Builder: set the empty flag. |
| 238 | pub fn with_empty(mut self, empty: bool) -> Self { |
| 239 | self.empty = empty; |
| 240 | self |
| 241 | } |
| 242 | |
| 243 | /// Builder: set the switch flag. |
| 244 | pub fn with_switch(mut self, switch: bool) -> Self { |
no outgoing calls