Builder: set the count limit.
(mut self, count: usize)
| 127 | |
| 128 | /// Builder: set the count limit. |
| 129 | pub fn with_count(mut self, count: usize) -> Self { |
| 130 | self.count = Some(count); |
| 131 | self |
| 132 | } |
| 133 | |
| 134 | /// Builder: set the view name. |
| 135 | pub fn with_view(mut self, view: impl Into<String>) -> Self { |
no outgoing calls