Struct yosys_netlist_json::Module [] [src]

pub struct Module {
    pub attributes: HashMap<String, AttributeVal>,
    pub ports: HashMap<String, Port>,
    pub cells: HashMap<String, Cell>,
    pub netnames: HashMap<String, Netname>,
}

Represents one module in the Yosys hierarchy

Fields

Module attributes

Module ports (interfaces to other modules)

Module cells (objects inside this module)

Module netnames (names of wires in this module)

Trait Implementations

impl Debug for Module
[src]

Formats the value using the given formatter.

impl Default for Module
[src]

Returns the "default value" for a type. Read more