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

pub struct NodeAddrLocal {

    /**
      | Our address, as reported by the peer
      |
      */
    pub addr_local: Service,
}

impl Default for NodeAddrLocal {

    fn default() -> Self {
        Self {
            addr_local: Service::default(),
        }
    }
}