[][src]Struct msql_srv::ParamParser

pub struct ParamParser<'a> { /* fields omitted */ }

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.

Trait Implementations

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

type IntoIter = Params<'a>

Which kind of iterator are we turning this into?

type Item = ParamValue<'a>

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a> Send for ParamParser<'a>

impl<'a> Sync for ParamParser<'a>

Blanket Implementations

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]