Module split
Available on crate feature
io only.Expand description
Functionality to split an I/O type into separate read and write halves.
Structs§
- Read
Half - The readable half of a value returned from
split. - Split
- Splitting an I/O type into separate read and write halves
- Write
Half - The writable half of a value returned from
split.
Traits§
- Splittable
- A trait for types that can be split into separate read and write halves.
Functions§
- split
- Splits a single value implementing
AsyncRead + AsyncWriteinto separateAsyncReadandAsyncWritehandles with or without internal synchronization dependes on whethersyncfeature is turned on.