usestd::path::PathBuf;useurl::Url;modthird_party;/// A path to a resource, either local or remote.
#[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]pubstructResourcePath{/// The network path to the resource.
pubnetwork: Url,
/// The local path to the resource.
publocal: PathBuf,
}