Specify that the minimum controller value should be used for the event
(mut self)
| 355 | impl Builder<WithSep> { |
| 356 | /// Specify that the minimum controller value should be used for the event |
| 357 | pub fn with_min_controller(mut self) -> Builder<WithController> { |
| 358 | self.state.bytes.extend(ZEROS_8); |
| 359 | Builder { |
| 360 | state: WithController { |
| 361 | bytes: self.state.bytes, |
| 362 | }, |
| 363 | } |
| 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); |