Return up to row_limit rows;
(mut self, row_limit: usize)
| 309 | |
| 310 | /// Return up to row_limit rows; |
| 311 | pub fn with_row_limit(mut self, row_limit: usize) -> Self { |
| 312 | self.options.row_limit = row_limit; |
| 313 | self |
| 314 | } |
| 315 | |
| 316 | /// Set the number of pods per host |
| 317 | pub fn with_pods_per_host(mut self, range: Range<usize>) -> Self { |
no outgoing calls