1 2 3 4 5 6
use crate::csstype::Cssifiable; pub trait Property<Item> { fn name() -> &'static str; fn verify(arg: Cssifiable) -> bool; }