pub trait StylingInterface:
Send
+ Sync
+ RefUnwindSafe {
// Required method
fn new_context<'c>(
&'c self,
html: &HtmlAllocator,
) -> Result<Box<dyn StylingContextInterface<'c> + 'c>>;
}pub trait StylingInterface:
Send
+ Sync
+ RefUnwindSafe {
// Required method
fn new_context<'c>(
&'c self,
html: &HtmlAllocator,
) -> Result<Box<dyn StylingContextInterface<'c> + 'c>>;
}