MCPcopy Create free account
hub / github.com/RustCV/RustCV / Priority

Enum Priority

rustcv-core/src/builder.rs:13–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected