Describes a page which can be visited
| 203 | |
| 204 | /// Describes a page which can be visited |
| 205 | struct Page { |
| 206 | host: String, // e.g. "gopher.floodgap.com" |
| 207 | selector: String, // e.g. "" |
| 208 | port: u16, // e.g. 70 |
| 209 | is_map: bool // Is this a gophermap? |
| 210 | } |
| 211 | |
| 212 | impl Page { |
| 213 | fn new(host: &str, selector: &str, port: u16, is_map: bool) |
nothing calls this directly
no outgoing calls
no test coverage detected