motorcortex-rust 0.5.0

Motorcortex Rust: a Rust client for the Motorcortex Core real-time control system (async + blocking).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Shared client-side types that survived the async-rewrite — the
//! actor-style `core::*` types depend on them. Legacy `Request`,
//! `Subscribe`, `Subscription`, and `ReadOnlySubscription` have been
//! deleted; their replacements live under `crate::core`.

mod parameter_tree;
mod parameters;
mod receive;

pub use parameter_tree::ParameterTree;
pub use parameters::Parameters;
pub use receive::receive_message;