Lines Matching refs:Row
12 row: Option<Row<'stmt>>,
34 pub fn next(&mut self) -> Result<Option<&Row<'stmt>>> { in next()
52 F: FnMut(&Row<'_>) -> Result<B>, in map()
61 F: FnMut(&Row<'_>) -> Result<B>, in mapped()
71 F: FnMut(&Row<'_>) -> Result<T, E>, in and_then()
85 pub(crate) fn get_expected_row(&mut self) -> Result<&Row<'stmt>> { in get_expected_row()
108 F: FnMut(&Row<'_>) -> Result<B>,
132 F: FnMut(&Row<'_>) -> Result<T>,
141 F: FnMut(&Row<'_>) -> Result<T>,
164 F: FnMut(&Row<'_>) -> Result<T, E>,
174 F: FnMut(&Row<'_>) -> Result<T, E>,
207 type Item = Row<'stmt>;
213 self.row = Some(Row { stmt }); in advance()
234 fn get(&self) -> Option<&Row<'stmt>> { in get()
240 pub struct Row<'stmt> { struct
244 impl<'stmt> Row<'stmt> { argument
376 … impl<'a, $($field,)*> convert::TryFrom<&'a Row<'a>> for ($($field,)*) where $($field: FromSql,)* {
382 fn try_from(row: &'a Row<'a>) -> Result<Self> {