pub trait QuicTransportReceive: AsyncRead {
// Required method
fn stop(&mut self, code: u64);
}Expand description
Abstraction over the inbound half of a QUIC stream (both bidi and inbound uni)
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".