pub struct QueryResult { /* fields omitted */ }
Result of a query or statement execution.
pub fn fold<F, T, Fut>( self, init: T, f: F ) -> Box<dyn Future<Item = (ClientHandle, T), Error = Error> + Send> where F: Fn(T, Row) -> Fut + Send + Sync + 'static, Fut: IntoFuture<Item = T, Error = Error> + Send + 'static, Fut::Future: Send, T: Send + 'static, | [src] |
Method that applies a function to each row, producing a single, final value.
Fetch data from table. It returns a block that contains all rows.
pub fn fold_blocks<F, T, Fut>( self, init: T, f: F ) -> Box<dyn Future<Item = (ClientHandle, T), Error = Error> + Send> where F: Fn(T, Block) -> Fut + Send + 'static, Fut: IntoFuture<Item = T, Error = Error> + Send + 'static, Fut::Future: Send, T: Send + 'static, | [src] |
Method that applies a function to each block, producing a single, final value.
🔬 This is a nightly-only experimental API. (try_from
)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from
)
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
🔬 This is a nightly-only experimental API. (try_from
)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from
)
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static