Searched refs:AndThenRows (Results 1 – 3 of 3) sorted by relevance
/external/rust/crates/rusqlite/src/ |
D | row.rs | 69 pub fn and_then<F, T, E>(self, f: F) -> AndThenRows<'stmt, F> in and_then() 73 AndThenRows { rows: self, map: f } in and_then() 157 pub struct AndThenRows<'stmt, F> { struct 162 impl<'stmt, T, E, F> AndThenRows<'stmt, F> argument 166 pub(crate) fn new(rows: Rows<'stmt>, f: F) -> AndThenRows<'stmt, F> { in new() 167 AndThenRows { rows, map: f } in new() 171 impl<T, E, F> Iterator for AndThenRows<'_, F> implementation
|
D | statement.rs | 11 AndThenRows, Connection, Error, MappedRows, RawStatement, Result, Row, Rows, ValueRef, 286 pub fn query_and_then<T, E, P, F>(&mut self, params: P, f: F) -> Result<AndThenRows<'_, F>> in query_and_then() 294 Ok(AndThenRows::new(rows, f)) in query_and_then() 339 ) -> Result<AndThenRows<'_, F>> in query_and_then_named() 345 Ok(AndThenRows::new(rows, f)) in query_and_then_named()
|
D | lib.rs | 80 pub use crate::row::{AndThenRows, Map, MappedRows, Row, RowIndex, Rows};
|