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