Trait libreda_pnr::db::traits::layout_ids_portrait::imports::NetlistWriter
source · pub trait NetlistWriter {
type Error;
// Required method
fn write_netlist<W, N>(
&self,
writer: &mut W,
netlist: &N
) -> Result<(), Self::Error>
where W: Write,
N: NetlistBase;
}Expand description
Write a netlist to a byte stream.
Required Associated Types§
Required Methods§
sourcefn write_netlist<W, N>(
&self,
writer: &mut W,
netlist: &N
) -> Result<(), Self::Error>where
W: Write,
N: NetlistBase,
fn write_netlist<W, N>( &self, writer: &mut W, netlist: &N ) -> Result<(), Self::Error>where W: Write, N: NetlistBase,
Write the netlist data structure to a byte stream.