命令行进度轻松实现
由 M-Schwab 维护。
#99 在 #show 中
5KB 103 行
一个非常简单的包,为任何可迭代的对象提供进度包装器
use rs_progress::Progressable; // returns sum of 45, and shows prompt on the command line let sum = (0..10).prog().reduce(|a,b| {a+b}).unwrap();