(&mut self, props: Self::Properties)
| 213 | } |
| 214 | |
| 215 | fn change(&mut self, props: Self::Properties) -> bool { |
| 216 | if self.props != props { |
| 217 | self.props = props; |
| 218 | true |
| 219 | } else { |
| 220 | false |
| 221 | } |
| 222 | } |
| 223 | |
| 224 | // open=self.props.open |
| 225 | // corner=self.props.corner.to_string() |
nothing calls this directly
no outgoing calls
no test coverage detected