Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::collections::HashMap;

use super::node::Node;

pub struct Network {
    /// nodes (BU)
    ///
    /// - key: node name
    /// - value: node
    pub nodes: HashMap<String, Node>,
}