Struct dilla_renderer::SystemConfig
source · pub(crate) struct SystemConfig {Show 14 fields
pub design_system: &'static str,
pub components_library_dependencies: Map<&'static str, &'static [&'static str]>,
pub components_library_css_html: Map<&'static str, &'static str>,
pub components_library_js: Map<&'static str, &'static [(&'static str, Map<&'static str, &'static str>)]>,
pub components_variant_template: Map<&'static str, &'static [&'static str]>,
pub components_with_library: &'static [&'static str],
pub default_libraries_css_html: &'static str,
pub default_libraries_js: &'static [(&'static str, Map<&'static str, &'static str>)],
pub libraries_css_html: Map<&'static str, &'static str>,
pub libraries_js: Map<&'static str, &'static [(&'static str, Map<&'static str, &'static str>)]>,
pub libraries_keys: &'static [&'static str],
pub themes: Map<&'static str, Map<&'static str, &'static str>>,
pub styles: &'static [&'static str],
pub variables: Map<&'static str, &'static str>,
}
Expand description
Support the whole Design system configuration.
Fields§
§design_system: &'static str
§components_library_dependencies: Map<&'static str, &'static [&'static str]>
§components_library_css_html: Map<&'static str, &'static str>
§components_library_js: Map<&'static str, &'static [(&'static str, Map<&'static str, &'static str>)]>
§components_variant_template: Map<&'static str, &'static [&'static str]>
§components_with_library: &'static [&'static str]
§default_libraries_css_html: &'static str
§default_libraries_js: &'static [(&'static str, Map<&'static str, &'static str>)]
§libraries_css_html: Map<&'static str, &'static str>
§libraries_js: Map<&'static str, &'static [(&'static str, Map<&'static str, &'static str>)]>
§libraries_keys: &'static [&'static str]
§themes: Map<&'static str, Map<&'static str, &'static str>>
§styles: &'static [&'static str]
§variables: Map<&'static str, &'static str>
Auto Trait Implementations§
impl RefUnwindSafe for SystemConfig
impl Send for SystemConfig
impl Sync for SystemConfig
impl Unpin for SystemConfig
impl UnwindSafe for SystemConfig
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