pub trait FetchPermissions {
    fn check_net_url(&self, _url: &Url) -> Result<(), AnyError>;
fn check_read(&self, _p: &PathBuf) -> Result<(), AnyError>; }

Required methods

Implementors