Struct msql_srv::ParamParser [] [src]

pub struct ParamParser<'a>(_);

A ParamParser decodes query parameters included in a client's EXECUTE command given type information for the expected parameters.

Users should invoke iter method to iterate over the provided parameters.

Methods

impl<'a> ParamParser<'a>
[src]

[src]

Produces an iterator over the parameters supplied by the client given the expected types of those parameters.

This method may be called multiple times to generate multiple independent iterators, but beware that this will also parse the underlying client byte-stream again.