Trait libreda_db::netlist::io::NetlistWriter[][src]

pub trait NetlistWriter {
    type Error;
    fn write_netlist<W: Write, N: NetlistBase>(
        &self,
        writer: &mut W,
        netlist: &N
    ) -> Result<(), Self::Error>; }

Write a netlist to a byte stream.

Associated Types

type Error[src]

Type of error that could happen while writing a netlist.

Loading content...

Required methods

fn write_netlist<W: Write, N: NetlistBase>(
    &self,
    writer: &mut W,
    netlist: &N
) -> Result<(), Self::Error>
[src]

Write the netlist data structure to a byte stream.

Loading content...

Implementors

Loading content...