#[repr(C)]pub struct k_stack {
pub wait_q: _wait_q_t,
pub lock: k_spinlock,
pub base: *mut usize,
pub next: *mut usize,
pub top: *mut usize,
pub flags: u8,
}
Fields§
§wait_q: _wait_q_t
§lock: k_spinlock
§base: *mut usize
§next: *mut usize
§top: *mut usize
§flags: u8
Auto Trait Implementations§
impl Freeze for k_stack
impl RefUnwindSafe for k_stack
impl !Send for k_stack
impl !Sync for k_stack
impl Unpin for k_stack
impl UnwindSafe for k_stack
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