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

Required Methods

Implementors