Output name.
(mut self, output_name: S)
| 82 | |
| 83 | /// Output name. |
| 84 | pub fn output_name<S: AsRef<str>>(mut self, output_name: S) -> Self { |
| 85 | self.params.output_name = output_name.as_ref().to_string(); |
| 86 | self |
| 87 | } |
| 88 | |
| 89 | /// Max array size. |
| 90 | pub fn max_array_size(mut self, max_array_size: usize) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected