grimoire_css 1.8.1

A magical CSS engine for all environments
Documentation
1
2
3
4
5
6
7
8
9
10
//! Types for representing compiled CSS output in filesystem and memory.

/// In-memory representation of compiled CSS with a name identifier
#[derive(Debug)]
pub struct CompiledCssInMemory {
    /// Name identifier for the compiled CSS
    pub name: String,
    /// The compiled CSS content
    pub content: String,
}