euv-macros 0.3.6

Procedural macros for the euv UI framework, providing the macro and attribute for declarative UI composition.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::*;

/// The value side of a CSS variable definition.
///
/// Always stored as an expression token stream. String literals like `"#fff"`
/// and dynamic expressions are all parsed as Rust expressions.
pub(crate) enum CssVarValue {
    /// A dynamic expression (Rust code token stream) that evaluates to a string.
    Expr(TokenStream2),
}