lirays 0.1.0

Rust client for LiRAYS-SCADA over WebSocket + Protobuf
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod namespace {
    include!(concat!(env!("OUT_DIR"), "/namespace.rs"));
}

pub mod types;

mod client;
mod connection;
mod models;
mod protocol;
mod schema;

pub use client::Client;
pub use connection::ConnectionOptions;
pub use models::{BooleanVar, FloatVar, IntegerVar, TextVar, VariableMetadataPatch};