(&self, limit: Option<usize>)
| 215 | } |
| 216 | |
| 217 | fn with_fetch(&self, limit: Option<usize>) -> Option<Arc<dyn DataSource>> { |
| 218 | let source = self.clone(); |
| 219 | Some(Arc::new(source.with_limit(limit))) |
| 220 | } |
| 221 | |
| 222 | fn fetch(&self) -> Option<usize> { |
| 223 | self.fetch |
no test coverage detected