IP address is used for boards which reads data from socket connection.
(mut self, address: S)
| 74 | |
| 75 | /// IP address is used for boards which reads data from socket connection. |
| 76 | pub fn ip_address<S: AsRef<str>>(mut self, address: S) -> Self { |
| 77 | self.params.ip_address = address.as_ref().to_string(); |
| 78 | self |
| 79 | } |
| 80 | |
| 81 | /// IP address is used for boards which reads data from socket connection. |
| 82 | pub fn ip_address_aux<S: AsRef<str>>(mut self, address: S) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected