1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
crate::ix!();

pub struct NodeVRecv {
    pub map_recv_bytes_per_msg_cmd: MapMsgCmdSize,
    pub n_recv_bytes:               u64, // default = { 0 }
}

impl Default for NodeVRecv {

    fn default() -> Self {
        Self {
            map_recv_bytes_per_msg_cmd: MapMsgCmdSize::default(),
            n_recv_bytes:               0,
        }
    }
}