Returns the range of where this stack resides in memory if the platform supports it.
(&self)
| 73 | /// Returns the range of where this stack resides in memory if the platform |
| 74 | /// supports it. |
| 75 | pub fn range(&self) -> Option<Range<usize>> { |
| 76 | self.0.range() |
| 77 | } |
| 78 | |
| 79 | /// Returns the instruction pointer stored in the Fiber's ControlContext. |
| 80 | pub fn control_context_instruction_pointer(&self) -> usize { |
no outgoing calls
no test coverage detected