pub struct Config {
pub lookup_files: Vec<String>,
pub ignore_globs: Vec<String>,
pub enable_color_provider: bool,
pub color_only_on_variables: bool,
}Expand description
Configuration settings
Fields§
§lookup_files: Vec<String>File patterns to scan for CSS variables
ignore_globs: Vec<String>Glob patterns to ignore
enable_color_provider: boolEnable color provider
color_only_on_variables: boolOnly show colors on variables (not inline values)
Implementations§
Source§impl Config
impl Config
pub fn from_runtime(runtime: &RuntimeConfig) -> Self
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Config
impl<'de> Deserialize<'de> for Config
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more