pub trait LegacyImporter:
Debug
+ Sync
+ Send {
// Required method
fn call(
&self,
this: &LegacyImporterThis,
url: &str,
prev: &str,
) -> Result<Option<LegacyImporterResult>>;
}Expand description
More information: Sass documentation
Required Methods§
Sourcefn call(
&self,
this: &LegacyImporterThis,
url: &str,
prev: &str,
) -> Result<Option<LegacyImporterResult>>
fn call( &self, this: &LegacyImporterThis, url: &str, prev: &str, ) -> Result<Option<LegacyImporterResult>>
implements of LegacyImporter.