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),