[][src]Type Definition odbc_iter::ValueRow

type ValueRow = Vec<Option<Value>>;

Row of dynamic nullable column values.

This objects are constructed from row data returned by ODBC library and can be further converted to types implementing TryFromValueRow/TryFromValue traits.

Trait Implementations

impl TryFromRow<DefaultConfiguration> for ValueRow[src]

type Error = RowConvertError

impl TryFromValueRow for ValueRow[src]

Allow to retrieve unconverted ValueRow as item of ResultSet iterator.

type Error = Infallible