(&mut self, props: Self::Properties)
| 116 | } |
| 117 | |
| 118 | fn change(&mut self, props: Self::Properties) -> bool { |
| 119 | if self.props != props { |
| 120 | self.props = props; |
| 121 | true |
| 122 | } else { |
| 123 | false |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | fn view(&self) -> Html { |
| 128 | // value?=to_option_string(&self.props.value) |
nothing calls this directly
no outgoing calls
no test coverage detected