pub trait RecvStream:
AsyncRead
+ Send
+ Unpin
+ 'static {
// Required method
fn stop(&mut self, code: u32);
}Expand description
Abstraction over a QUIC receive stream.
Implementations must support async reading and early termination.