ux-components 0.1.3

Backend agnostic GUI framework
Documentation
1
2
3
4
5
use super::{Route, RouteSettings};

pub trait RouteFactory<T> {
    fn on_generate_route(&self, settings: RouteSettings<T>) -> Option<Box<dyn Route>>;
}