pub struct ProgressTask {
pub id: TaskID,
pub description: String,
pub total: Option<f64>,
pub completed: f64,
pub visible: bool,
pub fields: HashMap<String, String>,
pub finished_time: Option<f64>,
pub finished_speed: Option<f64>,
/* private fields */
}Fields§
§id: TaskID§description: String§total: Option<f64>§completed: f64§visible: bool§fields: HashMap<String, String>§finished_time: Option<f64>§finished_speed: Option<f64>Trait Implementations§
Source§impl Clone for ProgressTask
impl Clone for ProgressTask
Source§fn clone(&self) -> ProgressTask
fn clone(&self) -> ProgressTask
Returns a duplicate of the value. Read more
1.0.0 · 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 ProgressTask
impl RefUnwindSafe for ProgressTask
impl Send for ProgressTask
impl Sync for ProgressTask
impl Unpin for ProgressTask
impl UnwindSafe for ProgressTask
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