(mut self, snapshot_id: i64)
| 582 | } |
| 583 | |
| 584 | pub fn with_snapshot(mut self, snapshot_id: i64) -> Self { |
| 585 | self.snapshot_id = snapshot_id; |
| 586 | self |
| 587 | } |
| 588 | pub fn with_partition(mut self, partition: BinaryRow) -> Self { |
| 589 | self.partition = Some(partition); |
| 590 | self |
no outgoing calls