| 15 | use toml::value::Table; |
| 16 | |
| 17 | pub struct AnyNode { |
| 18 | nodes: Vec<Box<dyn Actor>>, |
| 19 | #[allow(dead_code)] |
| 20 | info: config::Node, |
| 21 | } |
| 22 | |
| 23 | impl AnyNode { |
| 24 | pub fn new(local_key: u64, mut info: config::Node, extra_args: Table) -> Result<AnyNode> { |
nothing calls this directly
no outgoing calls
no test coverage detected