1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::{impl_report, reporter::Reporter};

#[allow(clippy::module_name_repetitions)]
#[derive(Debug)]
pub struct NullReporter;

impl Reporter for NullReporter {
    impl_report!(speciation(&mut self, _speciation: Ignored) {});

    impl_report!(dispersal(&mut self, _dispersal: Ignored) {});

    impl_report!(progress(&mut self, _progress: Ignored) {});
}