pub trait Target {
    fn write_headers(&mut self, headers: &Headers) -> Result<(), Error>;
    fn write_row(&mut self, row: &Row) -> Result<(), Error>;
}

Required Methods§

Useful for initializations

Implementors§