bubbles/core/
lifecycle.rs

1pub trait LifeCycle {
2    fn handle_mount(&mut self);
3    fn handle_render(&mut self);
4    fn handle_unmount(&mut self);
5}