pub fn vcd_to_edges(
vcd: Vcd,
clock_resolution: u64,
initial_timestamp: u64,
) -> Result<ParsedVcdEdges>
Expand description
Parses a VCD (given its contents) to a Vec of edges (value changes), with
timestamps relative to the clock_resolution
and initial_timestamp
.