| 11 | |
| 12 | #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)] |
| 13 | pub enum Priority { |
| 14 | Low = 0, |
| 15 | Medium = 50, |
| 16 | High = 100, |
| 17 | Required = 255, // 必须满足,否则报错 |
| 18 | } |
| 19 | |
| 20 | impl Default for CameraConfig { |
| 21 | fn default() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected