pub trait Step:
'static
+ Send
+ Sync {
// Required methods
fn name(&self) -> Cow<'static, str>;
fn current(&self) -> u32;
fn total(&self) -> u32;
}
pub trait Step:
'static
+ Send
+ Sync {
// Required methods
fn name(&self) -> Cow<'static, str>;
fn current(&self) -> u32;
fn total(&self) -> u32;
}