(&mut self, param: Box<dyn Element>)
| 44 | |
| 45 | impl<T> SetterMut<Box<dyn Element>> for MaterialApplicationHost<T> { |
| 46 | fn set(&mut self, param: Box<dyn Element>) -> &mut Self { |
| 47 | // log::info!("Host Set root"); |
| 48 | self.root = param; |
| 49 | self |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | impl<T> Context for MaterialApplicationHost<T> { |
no outgoing calls
no test coverage detected