Check if the URL appears valid. This performs basic validation that the URL has a scheme.
(&self)
| 216 | /// |
| 217 | /// This performs basic validation that the URL has a scheme. |
| 218 | pub fn is_valid_url(&self) -> bool { |
| 219 | self.url.contains("://") |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | impl fmt::Display for RemoteEntry { |