hframe 0.4.1

Show HTML content "inside" your egui rendered application
Documentation
1
2
3
4
5
6
use crate::CompositionContext;

pub(crate) trait CompositionStrategy: Send {
    fn name(&self) -> &'static str;
    fn compose(&mut self, cmp: &mut CompositionContext);
}