(&self, foreground: bool)
| 275 | } |
| 276 | |
| 277 | pub fn set_client_foreground(&self, foreground: bool) { |
| 278 | self.inner.native.set_client_foreground(foreground); |
| 279 | if foreground { |
| 280 | self.request_keyframe(); |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | pub fn is_tvos(&self) -> bool { |
| 285 | self.inner.is_tvos |
no test coverage detected