Lines Matching defs:stmt
11 pub(crate) stmt: Option<&'stmt Statement<'stmt>>, field
34 pub fn next(&mut self) -> Result<Option<&Row<'stmt>>> { in next()
50 pub fn map<F, B>(self, f: F) -> Map<'stmt, F> in map()
59 pub fn mapped<F, B>(self, f: F) -> MappedRows<'stmt, F> in mapped()
69 pub fn and_then<F, T, E>(self, f: F) -> AndThenRows<'stmt, F> in and_then()
78 pub(crate) fn new(stmt: &'stmt Statement<'stmt>) -> Rows<'stmt> { in new() argument
85 pub(crate) fn get_expected_row(&mut self) -> Result<&Row<'stmt>> { in get_expected_row()
134 pub(crate) fn new(rows: Rows<'stmt>, f: F) -> MappedRows<'stmt, F> { in new()
166 pub(crate) fn new(rows: Rows<'stmt>, f: F) -> AndThenRows<'stmt, F> { in new()
234 fn get(&self) -> Option<&Row<'stmt>> { in get()
241 pub(crate) stmt: &'stmt Statement<'stmt>, field