(&self)
| 363 | } |
| 364 | |
| 365 | pub fn rotate_left(&self) -> Result<(), AppError> { |
| 366 | if self.has_fixed_orientation() { |
| 367 | return Err(fixed_orientation_error()); |
| 368 | } |
| 369 | self.inner.native.rotate_left() |
| 370 | } |
| 371 | |
| 372 | pub fn rotate_right(&self) -> Result<(), AppError> { |
| 373 | if self.has_fixed_orientation() { |
nothing calls this directly
no test coverage detected