pub struct ThreadStack {
pub base: *mut z_thread_stack_element,
pub size: usize,
}
Expand description
The dynamic stack value, which wraps the underlying stack.
TODO: constructor instead of private.
Fields§
§base: *mut z_thread_stack_element
Private
size: usize
Private
Auto Trait Implementations§
impl Freeze for ThreadStack
impl RefUnwindSafe for ThreadStack
impl !Send for ThreadStack
impl !Sync for ThreadStack
impl Unpin for ThreadStack
impl UnwindSafe for ThreadStack
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