pub trait InterconnectLoadModel<N: NetlistBase>: LoadBase {
// Required method
fn interconnect_load(
&self,
netlist: &N,
driver_terminal: &TerminalId<N>
) -> Self::Load;
}Expand description
Abstraction of electrical loads represented by interconnects.
Required Methods§
sourcefn interconnect_load(
&self,
netlist: &N,
driver_terminal: &TerminalId<N>
) -> Self::Load
fn interconnect_load( &self, netlist: &N, driver_terminal: &TerminalId<N> ) -> Self::Load
Get the electrical load of the interconnect as seen by the specified driving terminal.