()
| 28 | |
| 29 | impl Default for BrainFlowInputParams { |
| 30 | fn default() -> Self { |
| 31 | Self { |
| 32 | serial_port: "".to_string(), |
| 33 | mac_address: "".to_string(), |
| 34 | ip_address: "".to_string(), |
| 35 | ip_address_aux: "".to_string(), |
| 36 | ip_address_anc: "".to_string(), |
| 37 | ip_port: 0, |
| 38 | ip_port_anc: 0, |
| 39 | ip_port_aux: 0, |
| 40 | ip_protocol: 0, |
| 41 | other_info: "".to_string(), |
| 42 | timeout: 0, |
| 43 | serial_number: "".to_string(), |
| 44 | file: "".to_string(), |
| 45 | file_aux: "".to_string(), |
| 46 | file_anc: "".to_string(), |
| 47 | master_board: BoardIds::NoBoard as usize, |
| 48 | } |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | /// Builder for [BrainFlowInputParams]. |
nothing calls this directly
no outgoing calls
no test coverage detected