(&mut self, msg: Self::Message)
| 60 | } |
| 61 | |
| 62 | fn update(&mut self, msg: Self::Message) -> ShouldRender { |
| 63 | match msg { |
| 64 | Msg::Clicked => { |
| 65 | self.props.onclick.emit(()); |
| 66 | } |
| 67 | } |
| 68 | false |
| 69 | } |
| 70 | |
| 71 | fn change(&mut self, props: Self::Properties) -> ShouldRender { |
| 72 | if self.props != props { |
nothing calls this directly
no outgoing calls
no test coverage detected