pub struct ProgressLine {
pub total: u64,
pub current: u64,
pub width: Option<usize>,
pub message: String,
pub show_counters: bool,
pub show_message: bool,
}Fields§
§total: u64§current: u64§width: Option<usize>§message: String§show_counters: bool§show_message: boolImplementations§
Source§impl ProgressLine
impl ProgressLine
Auto Trait Implementations§
impl Freeze for ProgressLine
impl RefUnwindSafe for ProgressLine
impl Send for ProgressLine
impl Sync for ProgressLine
impl Unpin for ProgressLine
impl UnwindSafe for ProgressLine
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