Struct yosys_netlist_json::Netlist [] [src]

pub struct Netlist {
    pub creator: String,
    pub modules: HashMap<String, Module>,
}

Represents an entire .json file used by Yosys

Fields

The program that created this file.

A map from module names to module objects contained in this .json file

Methods

impl Netlist
[src]

Read netlist data from a slice containing the bytes from a Yosys .json file

Serialize to a String

Serialize to a writer

Trait Implementations

impl Debug for Netlist
[src]

Formats the value using the given formatter.

impl Default for Netlist
[src]

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