(host: &str, selector: &str, port: u16, is_map: bool)
| 211 | |
| 212 | impl Page { |
| 213 | fn new(host: &str, selector: &str, port: u16, is_map: bool) |
| 214 | -> Self { |
| 215 | Page{host: String::from(host), |
| 216 | selector: String::from(selector), |
| 217 | port, |
| 218 | is_map} |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | #[no_mangle] |
nothing calls this directly
no outgoing calls
no test coverage detected