pub struct ProcessProgress {
pub iteration: usize,
pub max_iterations: usize,
pub status: String,
}Expand description
Progress tick during auto-processing.
Fields§
§iteration: usize§max_iterations: usize§status: StringTrait Implementations§
Source§impl Clone for ProcessProgress
impl Clone for ProcessProgress
Source§fn clone(&self) -> ProcessProgress
fn clone(&self) -> ProcessProgress
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ProcessProgress
impl RefUnwindSafe for ProcessProgress
impl Send for ProcessProgress
impl Sync for ProcessProgress
impl Unpin for ProcessProgress
impl UnsafeUnpin for ProcessProgress
impl UnwindSafe for ProcessProgress
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more