1 2 3 4 5 6 7 8 9 10 11 12
#[derive(Copy, Clone, Debug)] pub(super) struct FlusherState { pub(super) processing_index: usize, } impl Default for FlusherState { fn default() -> Self { Self { processing_index: 0, } } }