Trait dipstick::OnFlush

source ·
pub trait OnFlush {
    // Required method
    fn notify_flush_listeners(&self);
}
Expand description

Register and notify scope-flush listeners

Required Methods§

source

fn notify_flush_listeners(&self)

Notify registered listeners of an impending flush.

Implementors§

source§

impl<T> OnFlush for T
where T: Flush + WithAttributes,