Skip to main content

SassModuleVisibleSymbolsResolverV0

Trait SassModuleVisibleSymbolsResolverV0 

Source
pub trait SassModuleVisibleSymbolsResolverV0 {
    // Required methods
    fn own_symbol_declaration_keys(
        &self,
        style_path: &str,
    ) -> BTreeSet<(&'static str, String)>;
    fn builtin_module_exports(
        &self,
        source: &str,
    ) -> Option<BTreeSet<(&'static str, String)>>;
    fn external_module_exports(
        &self,
        edge: &SassModuleGraphEdgeFactV0,
    ) -> BTreeSet<(&'static str, String)>;
}

Required Methods§

Source

fn own_symbol_declaration_keys( &self, style_path: &str, ) -> BTreeSet<(&'static str, String)>

Source

fn builtin_module_exports( &self, source: &str, ) -> Option<BTreeSet<(&'static str, String)>>

Source

fn external_module_exports( &self, edge: &SassModuleGraphEdgeFactV0, ) -> BTreeSet<(&'static str, String)>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§