pub(crate) struct Entry {
pub(crate) oper: Operation,
pub(crate) packet: *mut (),
pub(crate) cx: Context,
}
Expand description
Represents a thread blocked on a specific channel operation.
Fields§
§oper: Operation
The operation.
packet: *mut ()
Optional packet.
cx: Context
Context associated with the thread owning this operation.
Auto Trait Implementations§
impl RefUnwindSafe for Entry
impl !Send for Entry
impl !Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
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