pub struct Map<'q, DB, F, A>where
DB: Database,{ /* private fields */ }
Expand description
SQL query that will map its results to owned Rust types.
Returned by Query::try_map
, query!()
, etc. Has most of the same methods as Query
but
the return types are changed to reflect the mapping. However, there is no equivalent of
Query::execute
as it doesn’t make sense to map the result type and then ignore it.
Query::bind
is also omitted; stylistically we recommend placing your .bind()
calls
before .try_map()
. This is also to prevent adding superfluous binds to the result of
query!()
et al.
Implementations§
source§impl<'q, DB, F, O, A> Map<'q, DB, F, A>where
DB: Database,
F: FnMut(<DB as Database>::Row) -> Result<O, Error> + Send,
O: Send + Unpin,
A: 'q + Send + IntoArguments<'q, DB>,
impl<'q, DB, F, O, A> Map<'q, DB, F, A>where DB: Database, F: FnMut(<DB as Database>::Row) -> Result<O, Error> + Send, O: Send + Unpin, A: 'q + Send + IntoArguments<'q, DB>,
sourcepub fn map<G, P>(
self,
g: G
) -> Map<'q, DB, impl FnMut(<DB as Database>::Row) + Send, A>where
G: FnMut(O) -> P + Send,
P: Unpin,
pub fn map<G, P>( self, g: G ) -> Map<'q, DB, impl FnMut(<DB as Database>::Row) + Send, A>where G: FnMut(O) -> P + Send, P: Unpin,
sourcepub fn try_map<G, P>(
self,
g: G
) -> Map<'q, DB, impl FnMut(<DB as Database>::Row) + Send, A>where
G: FnMut(O) -> Result<P, Error> + Send,
P: Unpin,
pub fn try_map<G, P>( self, g: G ) -> Map<'q, DB, impl FnMut(<DB as Database>::Row) + Send, A>where G: FnMut(O) -> Result<P, Error> + Send, P: Unpin,
sourcepub fn fetch<'e, 'c, E>(
self,
executor: E
) -> Pin<Box<dyn Stream<Item = Result<O, Error>> + Send + 'e, Global>>where
'c: 'e,
'q: 'e,
E: 'e + Executor<'c, Database = DB>,
DB: 'e,
F: 'e,
O: 'e,
pub fn fetch<'e, 'c, E>( self, executor: E ) -> Pin<Box<dyn Stream<Item = Result<O, Error>> + Send + 'e, Global>>where 'c: 'e, 'q: 'e, E: 'e + Executor<'c, Database = DB>, DB: 'e, F: 'e, O: 'e,
Execute the query and return the generated results as a stream.
sourcepub fn fetch_many<'e, 'c, E>(
self,
executor: E
) -> Pin<Box<dyn Stream<Item = Result<Either<<DB as Database>::QueryResult, O>, Error>> + Send + 'e, Global>>where
'c: 'e,
'q: 'e,
E: 'e + Executor<'c, Database = DB>,
DB: 'e,
F: 'e,
O: 'e,
pub fn fetch_many<'e, 'c, E>( self, executor: E ) -> Pin<Box<dyn Stream<Item = Result<Either<<DB as Database>::QueryResult, O>, Error>> + Send + 'e, Global>>where 'c: 'e, 'q: 'e, E: 'e + Executor<'c, Database = DB>, DB: 'e, F: 'e, O: 'e,
Execute multiple queries and return the generated results as a stream from each query, in a stream.
sourcepub async fn fetch_all<'e, 'c, E>(
self,
executor: E
) -> impl Future<Output = Result<Vec<O, Global>, Error>>where
'c: 'e,
'q: 'e,
E: 'e + Executor<'c, Database = DB>,
DB: 'e,
F: 'e,
O: 'e,
pub async fn fetch_all<'e, 'c, E>( self, executor: E ) -> impl Future<Output = Result<Vec<O, Global>, Error>>where 'c: 'e, 'q: 'e, E: 'e + Executor<'c, Database = DB>, DB: 'e, F: 'e, O: 'e,
Execute the query and return all the generated results, collected into a Vec
.
Trait Implementations§
source§impl<'q, DB, F, A> Execute<'q, DB> for Map<'q, DB, F, A>where
F: Send,
A: Send + IntoArguments<'q, DB>,
DB: Database,
impl<'q, DB, F, A> Execute<'q, DB> for Map<'q, DB, F, A>where F: Send, A: Send + IntoArguments<'q, DB>, DB: Database,
source§fn statement(&self) -> Option<&<DB as HasStatement<'q>>::Statement>
fn statement(&self) -> Option<&<DB as HasStatement<'q>>::Statement>
Gets the previously cached statement, if available.
source§fn take_arguments(&mut self) -> Option<<DB as HasArguments<'q>>::Arguments>
fn take_arguments(&mut self) -> Option<<DB as HasArguments<'q>>::Arguments>
Returns the arguments to be bound against the query string. Read more
source§fn persistent(&self) -> bool
fn persistent(&self) -> bool
Returns
true
if the statement should be cached.