pub struct Tx { /* private fields */ }
Expand description
The progress reporter transmitter.
Implementations§
Source§impl Tx
impl Tx
Sourcepub fn label<L: Into<String>>(self, label: L) -> Self
pub fn label<L: Into<String>>(self, label: L) -> Self
Set the label/name of the report.
howudoin::new().label("Report A");
Sourcepub fn set_len<L: Into<Option<u64>>>(self, len: L) -> Self
pub fn set_len<L: Into<Option<u64>>>(self, len: L) -> Self
Set an upper bound on the progress.
If the progress is indeterminate, None
can be specified.
howudoin::new().set_len(100);
Sourcepub fn fmt_as_bytes(self, fmt_as_bytes: bool) -> Self
pub fn fmt_as_bytes(self, fmt_as_bytes: bool) -> Self
Flag to format the position as bytes.
Sourcepub fn desc<D: Into<String>>(&self, desc: D) -> &Self
pub fn desc<D: Into<String>>(&self, desc: D) -> &Self
Set the report message.
let a = howudoin::new();
a.desc("processing");
Sourcepub fn inc_by<P: Into<u64>>(&self, delta: P) -> &Self
pub fn inc_by<P: Into<u64>>(&self, delta: P) -> &Self
Increment the report position by delta
.
let a = howudoin::new();
a.inc_by(5_u8);
Sourcepub fn set_pos<P: Into<u64>>(&self, pos: P) -> &Self
pub fn set_pos<P: Into<u64>>(&self, pos: P) -> &Self
Set the report position.
let a = howudoin::new();
a.set_pos(5_u8);
Sourcepub fn add_err<M: Into<String>>(&self, msg: M) -> &Self
pub fn add_err<M: Into<String>>(&self, msg: M) -> &Self
Add an error message.
let a = howudoin::new();
a.add_err("fail!");
Sourcepub fn add_warn<M: Into<String>>(&self, msg: M) -> &Self
pub fn add_warn<M: Into<String>>(&self, msg: M) -> &Self
Add an warning message.
let a = howudoin::new();
a.add_warn("careful...");
Sourcepub fn add_info<M: Into<String>>(&self, msg: M) -> &Self
pub fn add_info<M: Into<String>>(&self, msg: M) -> &Self
Add an information message.
let a = howudoin::new();
a.add_info("hello");
Sourcepub fn add_accum<M: Into<String>>(&self, severity: Severity, msg: M) -> &Self
pub fn add_accum<M: Into<String>>(&self, severity: Severity, msg: M) -> &Self
Add an accumulation message.
These messages are accumulated against a progress report, and consumers can display them for additional information.
Trait Implementations§
impl Copy for Tx
impl Eq for Tx
impl StructuralPartialEq for Tx
Auto Trait Implementations§
impl Freeze for Tx
impl RefUnwindSafe for Tx
impl Send for Tx
impl Sync for Tx
impl Unpin for Tx
impl UnwindSafe for Tx
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