(local_key: u64, params: RegistryNodeParams)
| 43 | |
| 44 | impl NodePlugin { |
| 45 | fn new(local_key: u64, params: RegistryNodeParams) -> NodePlugin { |
| 46 | NodePlugin { local_key, params } |
| 47 | } |
| 48 | |
| 49 | fn boxed(self) -> Box<dyn Plugin> { |
| 50 | Box::new(self) |
nothing calls this directly
no outgoing calls
no test coverage detected