pub trait PortReader {
    fn lookup_module_by_port(&self, port_id: &PortId) -> Result<ModuleId, Error>;
}
Expand description

A context supplying all the necessary read-only dependencies for processing any information regarding a port.

Required Methods

Return the module_id associated with a given port_id

Implementors