| 14 | use std::collections::BTreeMap; |
| 15 | |
| 16 | pub(super) struct AnyPort<T> { |
| 17 | pub storage: BTreeMap<u64, T>, |
| 18 | pub ty: PortTy, |
| 19 | pub name: String, |
| 20 | } |
| 21 | |
| 22 | impl<T> AnyPort<T> { |
| 23 | fn new(name: String, ty: PortTy) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected