pub trait RollingCondition {
    fn should_rollover(
        &mut self,
        now: &DateTime<Local>,
        current_filesize: u64
    ) -> bool; }
Expand description

Determines when a file should be “rolled over”.

Required Methods§

Determine and return whether or not the file should be rolled over.

Implementors§