pcb_core/
backend.rs

1use std;
2use pcb::Ctxt;
3
4// implement this for backend support
5pub trait Backend {
6  fn build_and_write<W>(ctxt: Ctxt, output: &mut W, print_extra_info: bool)
7    where W: std::io::Write;
8}