pub struct Request<'a> {
    pub tx: Option<Request<'a>>,
    pub rx: Option<Request<'a>>,
}
Expand description

A request made on a stream

Fields

tx: Option<Request<'a>>

The tx options of the request

rx: Option<Request<'a>>

The rx options of the request

Implementations

Requests a slice of chunks to be sent on the tx stream

Resets the tx stream with an error code

Flushes any pending tx data to be ACKed before unblocking

Marks the tx stream as finished (e.g. no more data will be sent)

Requests data on the rx stream to be received into the provided slice of chunks

Requests the peer to stop sending data on the rx stream

Sets the watermarks for the rx stream

Sets the low watermark for the rx stream

If the watermark is set to 0, the caller will be notified as soon as there is data available on the stream.

If the watermark is greater than 0, the caller will be notified as soon as there is at least low bytes available to be read. Note that the stream may be woken earlier.

Sets the high watermark for the rx stream

The stream ensures that all the received data will not exceed the watermark amount. This can be useful for receiving at most n bytes.

Trait Implementations

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.