(&mut self, size: usize)
| 822 | /// smaller than the [`Config::max_wasm_stack`] option. |
| 823 | #[cfg(any(feature = "async", feature = "stack-switching"))] |
| 824 | pub fn async_stack_size(&mut self, size: usize) -> &mut Self { |
| 825 | self.async_stack_size = size; |
| 826 | self |
| 827 | } |
| 828 | |
| 829 | /// Configures whether or not stacks used for async futures are zeroed |
| 830 | /// before (re)use. |
no outgoing calls