(&self, delta: f64)
| 352 | } |
| 353 | |
| 354 | pub fn rotate_crown(&self, delta: f64) -> Result<(), AppError> { |
| 355 | if !self.is_watchos() { |
| 356 | return Err(digital_crown_error()); |
| 357 | } |
| 358 | self.inner.native.rotate_crown(delta) |
| 359 | } |
| 360 | |
| 361 | pub fn open_app_switcher(&self) -> Result<(), AppError> { |
| 362 | self.inner.native.open_app_switcher() |
nothing calls this directly
no test coverage detected