Filter paginated result with corresponding column greater than the input value
(&mut self, values: V)
| 67 | |
| 68 | /// Filter paginated result with corresponding column greater than the input value |
| 69 | pub fn after<V>(&mut self, values: V) -> &mut Self |
| 70 | where |
| 71 | V: IntoValueTuple, |
| 72 | { |
| 73 | self.after = Some(values.into_value_tuple()); |
| 74 | self |
| 75 | } |
| 76 | |
| 77 | fn apply_filters(&mut self) -> &mut Self { |
| 78 | if let Some(values) = self.after.clone() { |
no outgoing calls