pub fn tcp_bytes(
stream: TcpStream,
) -> (FramedWrite<OwnedWriteHalf, LengthDelimitedCodec>, FramedRead<OwnedReadHalf, LengthDelimitedCodec>)Available on crate feature
tokio and non-WebAssembly only.Expand description
Helper creates a TCP Stream and Sink for Bytes strings where each string is
length-delimited.