pub struct GuardedStack {
pub pointer: VirtAddr,
pub slice: &'static mut [u8],
}
Expand description
A guarded stack
Fields§
§pointer: VirtAddr
the stack pointer
slice: &'static mut [u8]
the usable stack memory slice
Auto Trait Implementations§
impl Freeze for GuardedStack
impl RefUnwindSafe for GuardedStack
impl Send for GuardedStack
impl Sync for GuardedStack
impl Unpin for GuardedStack
impl !UnwindSafe for GuardedStack
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more