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; }