Struct webtransport_quinn::RecvStream

source ·
pub struct RecvStream { /* private fields */ }
Expand description

A stream that can be used to recieve bytes. See quinn::RecvStream.

Implementations§

source§

impl RecvStream

source

pub fn stop(&mut self, code: u32) -> Result<(), UnknownStream>

Tell the other end to stop sending data with the given error code. See quinn::RecvStream::stop. This is a u32 with WebTransport since it shares the error space with HTTP/3.

source

pub async fn read(&mut self, buf: &mut [u8]) -> Result<Option<usize>, ReadError>

Read some data into the buffer and return the amount read. See quinn::RecvStream::read.

source

pub async fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), ReadExactError>

Fill the entire buffer with data. See quinn::RecvStream::read_exact.

source

pub async fn read_chunk( &mut self, max_length: usize, ordered: bool ) -> Result<Option<Chunk>, ReadError>

Read a chunk of data from the stream. See quinn::RecvStream::read_chunk.

source

pub async fn read_chunks( &mut self, bufs: &mut [Bytes] ) -> Result<Option<usize>, ReadError>

Read chunks of data from the stream. See quinn::RecvStream::read_chunks.

source

pub async fn read_to_end( &mut self, size_limit: usize ) -> Result<Vec<u8>, ReadToEndError>

Read until the end of the stream or the limit is hit. See quinn::RecvStream::read_to_end.

Trait Implementations§

source§

impl AsyncRead for RecvStream

source§

fn poll_read( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &mut ReadBuf<'_> ) -> Poll<Result<()>>

Attempts to read from the AsyncRead into buf. Read more
source§

impl Debug for RecvStream

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl RecvStream for RecvStream

source§

fn close(self, code: u32)

Send a STOP_SENDING QUIC code.

§

type Error = ReadError

source§

fn poll_read_buf<B: BufMut>( &mut self, cx: &mut Context<'_>, buf: &mut B ) -> Poll<Result<usize, Self::Error>>

Attempt to read from the stream into the given buffer.
source§

fn poll_read_chunk( &mut self, cx: &mut Context<'_> ) -> Poll<Result<Option<Bytes>, Self::Error>>

Attempt to write the given buffer to the stream.
source§

fn read_buf<B>( &mut self, buf: &mut B ) -> impl Future<Output = Result<usize, Self::Error>> + Send
where B: BufMut + Send,

source§

fn read_chunk( &mut self ) -> impl Future<Output = Result<Option<Bytes>, Self::Error>> + Send

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more