pub struct ProgressBuilder { /* private fields */ }
👎Deprecated since 0.3.0: Use Progress::new() instead
Expand description
Deprecation: Using this directly as progress::builder::ProgressBuilder
is deprecated, please use progress::Builder
instead.
Implementations§
Source§impl ProgressBuilder
impl ProgressBuilder
Sourcepub fn set_finish(self, v: usize) -> Self
pub fn set_finish(self, v: usize) -> Self
Sets the maximum value of the Progress
.
Sourcepub fn set_caption(self, v: String) -> Self
pub fn set_caption(self, v: String) -> Self
Sets the caption for the Progress
.
Trait Implementations§
Source§impl Default for ProgressBuilder
impl Default for ProgressBuilder
Source§fn default() -> ProgressBuilder
fn default() -> ProgressBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProgressBuilder
impl RefUnwindSafe for ProgressBuilder
impl Send for ProgressBuilder
impl Sync for ProgressBuilder
impl Unpin for ProgressBuilder
impl UnwindSafe for ProgressBuilder
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