pub type ProgressReceiver = Receiver<ProgressEvent>;Expand description
A watch-based receiver for ProgressEvent updates.
Obtained from
FetchConfigBuilder::progress_channel().
Call .changed().await to wait for the next update, then .borrow() to read
the latest event. Only the most recent event is retained — intermediate
updates that arrive between .changed() polls are coalesced.
Aliased Type§
pub struct ProgressReceiver { /* private fields */ }