| 418 | /// Image format used by the Stream Deck |
| 419 | #[derive(Copy, Clone, Debug, Hash)] |
| 420 | pub struct ImageFormat { |
| 421 | /// Image format/mode |
| 422 | pub mode: ImageMode, |
| 423 | /// Image size |
| 424 | pub size: (usize, usize), |
| 425 | /// Image rotation |
| 426 | pub rotation: ImageRotation, |
| 427 | /// Image mirroring |
| 428 | pub mirror: ImageMirroring, |
| 429 | } |
| 430 | |
| 431 | impl Default for ImageFormat { |
| 432 | fn default() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected