pub fn import_def_netlist<C, Crd>(
    options: &DEFImportOptions<C>,
    def: &DEF,
    top_cell: &C::CellId,
    chip: &mut C
) -> Result<(), LefDefImportError>where
    Crd: NumCast + Ord + CoordinateType + PrimInt,
    C: L2NEdit<Coord = Crd>,
Expand description

Import the netlist from the DEF structure into the top_cell.

Caveat: Adds connections of pins but does not clear the existing netlist before. Existing connections may be disrupted.