pub struct EscapedDataReader<'a, R> { /* private fields */ }
Expand description

AsyncRead instance that returns an unescaped DATA stream.

Note that:

  • If a line (as defined by b“\r\n“ endings) starts with a b’.’, it is an “escaping” dot that is not part of the actual contents of the line.
  • If a line is exactly b“.\r\n“, it is the last line of the stream this stream will give. It is not part of the actual contents of the message.

Implementations

Returns true iff the message has been successfully streamed to completion

Asserts that the full message has been read (ie. .is_finished() would return true), then marks this reader as complete.

Note that this should be called before saving the stream, given that until .is_finished() has returned true it’s not yet sure whether the stream ended due to connection loss or thanks to the end of data marker being reached.

Returns the range of data in the buf passed to new that contains data that hasn’t been handled yet (ie. what followed the end-of-data marker) if complete() has been called, and None otherwise.

Trait Implementations

Attempt to read from the AsyncRead into buf. Read more

Attempt to read from the AsyncRead into bufs using vectored IO operations. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Creates an adaptor which will chain this stream with another. Read more

Tries to read some bytes directly into the given buf in asynchronous manner, returning a future type. Read more

Creates a future which will read from the AsyncRead into bufs using vectored IO operations. Read more

Creates a future which will read exactly enough bytes to fill buf, returning an error if end of file (EOF) is hit sooner. Read more

Creates a future which will read all the bytes from this AsyncRead. Read more

Creates a future which will read all the bytes from this AsyncRead. Read more

Helper method for splitting this read/write object into two halves. Read more

Creates an AsyncRead adapter which will read at most limit bytes from the underlying reader. 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.