#[repr(C)]pub struct k_pipe {
    pub waiting: usize,
    pub buf: ring_buf,
    pub lock: k_spinlock,
    pub data: _wait_q_t,
    pub space: _wait_q_t,
    pub flags: u8,
    pub poll_events: _dnode,
}Fields§
§waiting: usize§buf: ring_buf§lock: k_spinlock§data: _wait_q_t§space: _wait_q_t§flags: u8§poll_events: _dnodeTrait Implementations§
Auto Trait Implementations§
impl Freeze for k_pipe
impl RefUnwindSafe for k_pipe
impl !Send for k_pipe
impl !Sync for k_pipe
impl Unpin for k_pipe
impl UnwindSafe for k_pipe
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