pub unsafe trait RuntimeFiberStack: Send + Sync { // Required methods fn top(&self) -> *mut u8; fn range(&self) -> Range<usize>; }
A fiber stack backed by custom memory.
The top of the allocated stack.
The valid range of the stack without guard pages.