Filter paginated result with corresponding column less than the input value
(&mut self, values: V)
| 58 | |
| 59 | /// Filter paginated result with corresponding column less than the input value |
| 60 | pub fn before<V>(&mut self, values: V) -> &mut Self |
| 61 | where |
| 62 | V: IntoValueTuple, |
| 63 | { |
| 64 | self.before = Some(values.into_value_tuple()); |
| 65 | self |
| 66 | } |
| 67 | |
| 68 | /// Filter paginated result with corresponding column greater than the input value |
| 69 | pub fn after<V>(&mut self, values: V) -> &mut Self |
no outgoing calls