(&mut self, msg: Self::Message)
| 67 | } |
| 68 | |
| 69 | fn update(&mut self, msg: Self::Message) -> ShouldRender { |
| 70 | match msg { |
| 71 | Msg::Clicked => { |
| 72 | self.props.onclick.emit(()); |
| 73 | } |
| 74 | } |
| 75 | false |
| 76 | } |
| 77 | |
| 78 | fn change(&mut self, props: Self::Properties) -> ShouldRender { |
| 79 | if self.props != props { |
nothing calls this directly
no outgoing calls
no test coverage detected