Specify that the maximum controller value should be used for the event
(mut self)
| 364 | } |
| 365 | /// Specify that the maximum controller value should be used for the event |
| 366 | pub fn with_max_controller(mut self) -> Builder<WithController> { |
| 367 | self.state.bytes.extend(FFS_8); |
| 368 | Builder { |
| 369 | state: WithController { |
| 370 | bytes: self.state.bytes, |
| 371 | }, |
| 372 | } |
| 373 | } |
| 374 | /// Specify the controller for the event |
| 375 | pub fn with_controller(mut self, controller: &str) -> Builder<WithController> { |
| 376 | self.state |