pub unsafe fn on_fiber_with_stack<'a, R>(
stack: NonNull<FiberStack>,
func: impl FnOnce() -> R + 'a,
) -> impl Future<Output = Result<R, AsyncError>> + Send + 'awhere
R: Send + 'a,Expand description
Runs func on a native fiber backed by a reusable EVM stack slot.