Sets whether this callable requires asynchronous dispatch.
(mut self, is_async: bool)
| 482 | |
| 483 | /// Sets whether this callable requires asynchronous dispatch. |
| 484 | pub fn with_async(mut self, is_async: bool) -> Self { |
| 485 | self.is_async = is_async; |
| 486 | self |
| 487 | } |
| 488 | |
| 489 | /// Sets the syntax specifications for this callable. |
| 490 | pub fn with_syntax( |