#[repr(C)]pub struct k_mem_slab {
    pub wait_q: _wait_q_t,
    pub lock: k_spinlock,
    pub buffer: *mut c_char,
    pub free_list: *mut c_char,
    pub info: k_mem_slab_info,
}Fields§
§wait_q: _wait_q_t§lock: k_spinlock§buffer: *mut c_char§free_list: *mut c_char§info: k_mem_slab_infoTrait Implementations§
Auto Trait Implementations§
impl Freeze for k_mem_slab
impl RefUnwindSafe for k_mem_slab
impl !Send for k_mem_slab
impl !Sync for k_mem_slab
impl Unpin for k_mem_slab
impl UnwindSafe for k_mem_slab
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