Skip to main content

QuicByteSource

Type Alias QuicByteSource 

Source
pub type QuicByteSource = Source<Vec<u8>, NotUsed>;
Expand description

QUIC byte source used by accepted and opened bidirectional streams.

The source emits Vec<u8> chunks and backpressures the Quinn receive stream with a bounded demand window, preserving QUIC’s reliable flow-control semantics without a blocking Tokio receive seam.

Aliased Type§

pub struct QuicByteSource { /* private fields */ }