seersdk-rs 1.0.0

Rust SDK for RBK robot TCP communication
Documentation
1
2
3
4
5
6
7
8
/// Internal frame structure for RBK protocol
#[derive(Debug, Clone)]
pub struct RbkFrame {
    pub flow_no: u16,
    #[allow(dead_code)]
    pub api_no: u16,
    pub body: String,
}