Retrieve a stylesheet from a network location. # Errors Any network-related error, or an error during response parsing.
(&self, url: &str)
| 44 | /// |
| 45 | /// Any network-related error, or an error during response parsing. |
| 46 | fn retrieve_from_url(&self, url: &str) -> Result<String> { |
| 47 | Err(self.unsupported(&format!("Loading external URLs is not supported: {url}"))) |
| 48 | } |
| 49 | /// Retrieve a stylesheet from the local filesystem. |
| 50 | /// |
| 51 | /// # Errors |
nothing calls this directly
no test coverage detected