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