ember_plus/client/mod.rs
1//! Ember+ client (consumer) implementation.
2//!
3//! The client connects to an Ember+ provider and can:
4//! - Browse the tree structure
5//! - Read and set parameter values
6//! - Subscribe to changes
7//! - Invoke functions
8//! - Monitor matrix connections
9
10mod connection;
11
12pub use connection::EmberClient;