pub trait FileImporter:
Debug
+ Send
+ Sync {
// Required method
fn find_file_url(
&self,
url: &str,
options: &ImporterOptions,
) -> Result<Option<Url>>;
}
Expand description
More information: Sass documentation
Required Methods§
Sourcefn find_file_url(
&self,
url: &str,
options: &ImporterOptions,
) -> Result<Option<Url>>
fn find_file_url( &self, url: &str, options: &ImporterOptions, ) -> Result<Option<Url>>
More information: Sass documentation