efx 0.6.1

Rust XML templating engine for building egui UIs with procedural macros
Documentation
1
2
3
4
5
6
7
8
use efx_core::Element;
use proc_macro2::TokenStream;

pub trait TagAttributes {
    fn new(el: &Element) -> Result<Self, TokenStream>
    where
        Self: Sized;
}