(&mut self, props: Self::Properties)
| 59 | } |
| 60 | |
| 61 | fn change(&mut self, props: Self::Properties) -> ShouldRender { |
| 62 | if self.props != props { |
| 63 | self.props = props; |
| 64 | true |
| 65 | } else { |
| 66 | false |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | // indeterminate?=to_option(self.props.indeterminate) |
| 71 | // disabled=self.props.disabled |
nothing calls this directly
no outgoing calls
no test coverage detected