shvrpc 15.0.0

Rust implementation of the SHV-RPC protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use shvproto::RpcValue;

#[derive(Debug, Clone, PartialEq)]
pub struct JournalEntry {
    pub epoch_msec: i64,
    pub path: String,
    pub signal: String,
    pub source: String,
    pub value: RpcValue,
    pub access_level: i32,
    pub short_time: i32,
    pub user_id: RpcValue,
    pub repeat: bool,
    pub provisional: bool,
}