pub trait ReportWriter {
fn write(
&mut self,
reports: &ReportCollection,
file_library: &FileLibrary
) -> usize;
fn written(&self) -> usize;
}Required Methods§
sourcefn write(
&mut self,
reports: &ReportCollection,
file_library: &FileLibrary
) -> usize
fn write(
&mut self,
reports: &ReportCollection,
file_library: &FileLibrary
) -> usize
Filter and write the given reports. Returns the number of reports written.