(value: &str)
| 368 | } |
| 369 | |
| 370 | fn is_url(value: &str) -> bool { |
| 371 | value.starts_with("http://") || value.starts_with("https://") || value.starts_with("file://") |
| 372 | } |
| 373 | |
| 374 | fn is_video_source(value: &str) -> bool { |
| 375 | if is_url(value) { |
no outgoing calls
no test coverage detected