(mut self, followup: bool)
| 294 | /// Set to false if don't want to run acknowledge after succesful handler execution |
| 295 | #[must_use] |
| 296 | pub const fn handler_ack(mut self, followup: bool) -> Self { |
| 297 | self.handler_ack = Some(followup); |
| 298 | self |
| 299 | } |
| 300 | |
| 301 | /// Builds the `ConsumeOptions` with the configured values. |
| 302 | #[must_use] |
nothing calls this directly
no outgoing calls
no test coverage detected