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

Required Methods

Implementors