(mut self, serial: S)
| 132 | } |
| 133 | |
| 134 | pub fn serial_number<S: AsRef<str>>(mut self, serial: S) -> Self { |
| 135 | self.params.serial_number = serial.as_ref().to_string(); |
| 136 | self |
| 137 | } |
| 138 | |
| 139 | pub fn file<S: AsRef<str>>(mut self, filename: S) -> Self { |
| 140 | self.params.file = filename.as_ref().to_string(); |
nothing calls this directly
no outgoing calls
no test coverage detected