We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Progress
Count
DynNestedProgressToNestedProgress
1 parent 7eb69ac commit 967ea46Copy full SHA for 967ea46
src/traits.rs
@@ -530,7 +530,7 @@ mod impls {
530
531
impl<T> Progress for DynNestedProgressToNestedProgress<T>
532
where
533
- T: ?Sized + DynNestedProgress,
+ T: ?Sized + Progress,
534
{
535
fn init(&mut self, max: Option<Step>, unit: Option<Unit>) {
536
self.0.init(max, unit)
@@ -575,7 +575,7 @@ mod impls {
575
576
impl<T> Count for DynNestedProgressToNestedProgress<T>
577
578
+ T: ?Sized + Count,
579
580
fn set(&self, step: Step) {
581
self.0.set(step)
0 commit comments