//!Extractors that provides notification on progress.
//!
//!These are the same as in root module,
//!but allow to notify when each data chunk arrieves
//!with their size
//!
//!## Notifier
//!
//!The trait that describes how to send notification.
//!User may use already existing impls or create own `Notifier`
//!
use mpsc as std_mpsc;
///Describes Body download progress
///Noop Notifier.
///
///This one is used by default
;