pub trait ReadWriteEx:
AsyncRead
+ AsyncWrite
+ StreamInfo
+ Unpin
+ Debug {
// Required method
fn box_clone(&self) -> IReadWrite;
}Expand description
The trait for IReadWrite. It can be made into a trait object IReadWrite used
by Swarm Substream.
StreamInfo must be supported.