guion 0.4.0

flexible GUI framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::selector::StyleSelector;

pub mod standard;
pub mod imp;

pub trait StyleSelectag<E>: Clone {

}

pub trait StyleSelectagInto<S,E>: StyleSelectag<E> where S: StyleSelector<E> {
    fn into_selector(self) -> S;
}