MCPcopy Create free account
hub / github.com/NativeScript/SimDeck / camera_status

Function camera_status

packages/server/src/camera.rs:131–136  ·  view source on GitHub ↗
(udid: &str)

Source from the content-addressed store, hash-verified

129}
130
131pub fn camera_status(udid: &str) -> Result<Value, AppError> {
132 validate_udid(udid)?;
133 let mut status = native_status(udid)?;
134 enrich_status(udid, &mut status);
135 Ok(status)
136}
137
138pub fn stop_camera(udid: &str) -> Result<Value, AppError> {
139 validate_udid(udid)?;

Callers

nothing calls this directly

Calls 3

validate_udidFunction · 0.85
native_statusFunction · 0.85
enrich_statusFunction · 0.85

Tested by

no test coverage detected