pub trait ReportWriter {
    fn write(
        &mut self,
        reports: &ReportCollection,
        file_library: &FileLibrary
    ) -> usize; fn written(&self) -> usize; }

Required Methods§

Filter and write the given reports. Returns the number of reports written.

Returns the number of reports written.

Implementors§