pub fn fetch() -> Option<Vec<Progress>>
Expand description
Fetch the progress report tree.
The returned structure is a tree of progress reports currently tracked.
If no progress has been init
ialised, this will return None
.
Note that report::Progress
is serialisable with the serde
feature.
ยงExample
let a = howudoin::new();
let b = howudoin::new();
let progress = howudoin::fetch();