Builder: set the view.
(mut self, view: impl Into<String>)
| 109 | |
| 110 | /// Builder: set the view. |
| 111 | pub fn with_view(mut self, view: impl Into<String>) -> Self { |
| 112 | self.view = Some(view.into()); |
| 113 | self |
| 114 | } |
| 115 | |
| 116 | /// Builder: set the output format. |
| 117 | pub fn with_format(mut self, format: ChangeFormat) -> Self { |
no outgoing calls