(&mut self, props: Self::Properties)
| 100 | } |
| 101 | |
| 102 | fn change(&mut self, props: Self::Properties) -> bool { |
| 103 | if self.props != props { |
| 104 | self.props = props; |
| 105 | true |
| 106 | } else { |
| 107 | false |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | fn view(&self) -> Html { |
| 112 | // timeoutMs=self.props.timeout_ms |
nothing calls this directly
no outgoing calls
no test coverage detected