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

Enum Response

rustcv/src/videoio/mod.rs:22–33  ·  view source on GitHub ↗

响应:后台 -> 主线程

Source from the content-addressed store, hash-verified

20
21/// 响应:后台 -> 主线程
22enum Response {
23 FrameData {
24 width: u32,
25 height: u32,
26 data: Vec<u8>,
27 fourcc: u32,
28 },
29 PropertySet, // 【新增】属性设置成功确认
30 Error(String),
31 #[allow(dead_code)]
32 EndOfStream,
33}
34
35pub struct VideoCapture {
36 cmd_tx: Sender<Command>,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected