rust-lcm-codec 0.2.1

Rust support for reading and writing the LCM data format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package nested;

struct local_nested_t {
    byte j;
    local_primitive_t k;
    byte p;
}

struct local_primitive_t {
    byte m;
    byte n;
}

struct remote_nested_t {
    byte j;
    temperature.temperature_t k;
    byte p;
}