payload_streamer

Trait StatusCallback

Source
pub trait StatusCallback:
    Send
    + Sync
    + Fn(usize, usize) { }
Expand description

Callback type, called with (data_read, data_total)

Implementors§

Source§

impl<F> StatusCallback for F
where F: Send + Sync + Fn(usize, usize),