pub trait SassModuleGraphConfigurationResolverV0 {
// Required methods
fn use_variable_overrides(
&self,
request: SassModuleUseConfigurationRequestV0<'_>,
) -> BTreeMap<String, String>;
fn forward_effective_variable_overrides(
&self,
request: SassModuleForwardConfigurationRequestV0<'_>,
) -> BTreeMap<String, String>;
fn configurable_names(&self, target_style_path: &str) -> BTreeSet<String>;
}Required Methods§
fn use_variable_overrides( &self, request: SassModuleUseConfigurationRequestV0<'_>, ) -> BTreeMap<String, String>
fn forward_effective_variable_overrides( &self, request: SassModuleForwardConfigurationRequestV0<'_>, ) -> BTreeMap<String, String>
fn configurable_names(&self, target_style_path: &str) -> BTreeSet<String>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".