Mac address, for example, is used for bluetooth based boards.
(mut self, address: S)
| 68 | |
| 69 | /// Mac address, for example, is used for bluetooth based boards. |
| 70 | pub fn mac_address<S: AsRef<str>>(mut self, address: S) -> Self { |
| 71 | self.params.mac_address = address.as_ref().to_string(); |
| 72 | self |
| 73 | } |
| 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 { |
nothing calls this directly
no outgoing calls
no test coverage detected