pub trait ToCss {
    fn to_css(&self, class_name: String) -> String;
}
Expand description

Structs implementing this trait should be able to turn into a part of a CSS style sheet.

Required Methods

Implementors