pub struct AsyncDriver<T, P: Parse> { /* private fields */ }
Expand description

Asynchronous driver for parsers

This is a generic asynchronous driver for objects implementing the Parse trait.

In general, it is advised to use the AsyncParser alias which specializes this struct for use with the default Parser.

Implementations

Create a new parser with default options, wrapping the given reader.

Create a new parser while configuring the lexer with the given options.

Create a fully customized parser from a lexer and a parser component.

Decompose the AsyncDriver into its parts

Access the inner AsyncBufRead

Access the inner AsyncBufRead, mutably

Access the lexer

Access the lexer, mutably

Access the parser

Access the parser, mutably

Release temporary buffers and other ephemeral allocations.

This is sensible to call when it is expected that no more data will be processed by the parser for a while and the memory is better used elsewhere.

Trait Implementations

Poll for a single event from the parser.

Values yielded by the stream.

Attempt to pull out the next value of this stream, registering the current task for wakeup if the value is not yet available, and returning None if the stream is exhausted. Read more

Returns the bounds on the remaining length of the stream. 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.

The type of successful values yielded by this future

The type of failures yielded by this future

Poll this TryStream as if it were a Stream. Read more