Searched refs:MappedRows (Results 1 – 3 of 3) sorted by relevance
/external/rust/crates/rusqlite/src/ |
D | row.rs | 59 pub fn mapped<F, B>(self, f: F) -> MappedRows<'stmt, F> in mapped() 63 MappedRows { rows: self, map: f } in mapped() 125 pub struct MappedRows<'stmt, F> { struct 130 impl<'stmt, T, F> MappedRows<'stmt, F> implementation 134 pub(crate) fn new(rows: Rows<'stmt>, f: F) -> MappedRows<'stmt, F> { in new() 135 MappedRows { rows, map: f } in new() 139 impl<T, F> Iterator for MappedRows<'_, F> implementation
|
D | statement.rs | 11 AndThenRows, Connection, Error, MappedRows, RawStatement, Result, Row, Rows, ValueRef, 228 pub fn query_map<T, P, F>(&mut self, params: P, f: F) -> Result<MappedRows<'_, F>> in query_map() 235 Ok(MappedRows::new(rows, f)) in query_map() 271 ) -> Result<MappedRows<'_, F>> in query_map_named() 276 Ok(MappedRows::new(rows, f)) in query_map_named()
|
D | lib.rs | 80 pub use crate::row::{AndThenRows, Map, MappedRows, Row, RowIndex, Rows};
|