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