Skip to main content

SassModuleConfigurableNamesResolverV0

Trait SassModuleConfigurableNamesResolverV0 

Source
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§

Source

fn local_configurable_names( &self, style_path: &str, style_source: &str, ) -> BTreeSet<String>

Source

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".

Implementors§