Set the memory reservation for the data
(mut self, reservation: MemoryReservation)
| 76 | |
| 77 | /// Set the memory reservation for the data |
| 78 | pub fn with_reservation(mut self, reservation: MemoryReservation) -> Self { |
| 79 | self.reservation = Some(reservation); |
| 80 | self |
| 81 | } |
| 82 | |
| 83 | /// Set the number of rows to produce |
| 84 | pub fn with_fetch(mut self, fetch: Option<usize>) -> Self { |
no outgoing calls