Trait libreda_pnr::db::NetlistWriter[][src]

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

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

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

Write the netlist data structure to a byte stream.

Loading content...

Implementors

Loading content...