Skip to main content

viva_service/
lib.rs

1//! GenICam camera service library — bridges viva-genicam to Zenoh for genicam-studio.
2//!
3//! The binary entrypoint lives in `main.rs`; this module re-exports the core
4//! components so that integration tests can drive the service in-process.
5
6pub mod acquisition;
7pub mod config;
8pub mod device;
9pub mod nodes;
10pub mod pixel_format;
11pub mod status;
12pub mod xml;