pub trait SassModuleConfigurableNamesResolverV0 {
// Required methods
fn local_configurable_names(
&self,
style_path: &str,
style_source: &str,
) -> BTreeSet<String>;
fn resolve_module_source(
&self,
from_style_path: &str,
source: &str,
available_style_paths: &BTreeSet<&str>,
) -> Option<String>;
}Required Methods§
fn local_configurable_names( &self, style_path: &str, style_source: &str, ) -> BTreeSet<String>
fn resolve_module_source( &self, from_style_path: &str, source: &str, available_style_paths: &BTreeSet<&str>, ) -> Option<String>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".