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