Struct moore_svlog::port_list::PortList[][src]

pub struct PortList<'a> {
    pub int: Vec<IntPort<'a>>,
    pub ext_pos: Vec<ExtPort<'a>>,
    pub ext_named: Option<HashMap<Name, usize>>,
    // some fields omitted
}
Expand description

List of internal and external ports of a node.

A PortList consists of an ordered list of internal and external ports. The external ports map to one or more internal ports via PortExpr. An optional name lookup table allows for external ports to be connected to by name.

Fields

int: Vec<IntPort<'a>>

The internal ports.

ext_pos: Vec<ExtPort<'a>>

The external ports, in order for positional connections. Port indices are indices into int.

ext_named: Option<HashMap<Name, usize>>

The external ports, for named connections. Values are indices into ext_pos. None if there are any purely positional external ports.

Trait Implementations

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.