trait StreamerWithCallbacks {
    // Required method
    fn flush(&mut self) -> bool;
}

Required Methods§

source

fn flush(&mut self) -> bool

Implementors§

source§

impl<'a, W: 'a + Write> StreamerWithCallbacks for Streamer<'a, W>