Returns a pointer to the base of the stack (the lowest address). Note that the returned pointer has provenance for the entire stack allocation, however, not just the top.
(&mut self)
| 797 | /// Note that the returned pointer has provenance for the entire stack |
| 798 | /// allocation, however, not just the top. |
| 799 | fn base(&mut self) -> *mut u8 { |
| 800 | self.storage.as_mut_ptr().cast::<u8>() |
| 801 | } |
| 802 | |
| 803 | /// Returns the length, in bytes, of this stack allocation. |
| 804 | fn len(&self) -> usize { |
no test coverage detected