pub struct Parked {
pub conn: u32,
pub client: u64,
}Expand description
Where the reply to a parked client has to go.
Fields§
§conn: u32The slot holding its reply buffer.
client: u64The client that was on that slot when it blocked.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Parked
impl RefUnwindSafe for Parked
impl Send for Parked
impl Sync for Parked
impl Unpin for Parked
impl UnsafeUnpin for Parked
impl UnwindSafe for Parked
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