Files @ cc687c3f75c5
Branch filter:

Location: CSY/reowolf/src/runtime2/registry.rs

cc687c3f75c5 239 B application/rls-services+xml Show Annotation Show as Raw Download as Raw
MH
WIP on documentation and initial runtime
use std::collections::HashMap;

use crate::PortId;

struct PortDesc {
    port_id: u32,
    owning_connector_id: u32,
}

pub(crate) struct Registry {
    connector_counter: u32,
    port_counter: u32,
    ports: HashMap<PortId, PortDesc>
}