Expand description
Tokio-based asynchronous unnamed pipes.
See the parent-level documentation for more.
§Examples
See pipe().
Structs§
- Recver
- Tokio-based handle to the receiving end of an unnamed pipe, created by the
pipe()function together with the sending end. - Sender
- Handle to the sending end of an unnamed pipe, created by the
pipe()function together with the receiving end.
Functions§
- pipe
- Creates a new pipe with the default creation settings and returns Tokio-based handles to its sending end and receiving end.