Trait ToCss

Source
pub trait ToCss {
    // Required method
    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§

Source

fn to_css(&self, class_name: String) -> String

Implementors§