rustyle 0.1.0

A new way to represent the CSS stylesheet in Rust
Documentation
1
2
3
4
5
6
use crate::csstype::Cssifiable;

pub trait Property<Item> {
  fn name() -> &'static str;
  fn verify(arg: Cssifiable) -> bool;
}