1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
use crate::prelude::Value;
use std::fmt;
#[macro_export]
macro_rules! style {
( $($arg: tt)* ) => {
attr("style", $crate::jss::style!{$($arg)*})
};
}
#[derive(Debug, Clone, PartialEq)]
pub struct Style {
pub name: String,
pub value: Value,
}
impl Style {
pub fn new(name: impl ToString, value: Value) -> Self {
Style {
name: name.to_string(),
value,
}
}
}
impl fmt::Display for Style {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}:{}", self.name, self.value)
}
}