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§
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)>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".