Builder: set count limit.
(mut self, count: usize)
| 662 | |
| 663 | /// Builder: set count limit. |
| 664 | pub fn count(mut self, count: usize) -> Self { |
| 665 | self.count = Some(count); |
| 666 | self |
| 667 | } |
| 668 | |
| 669 | /// Builder: set reverse order. |
| 670 | pub fn reverse(mut self, reverse: bool) -> Self { |
no outgoing calls