howudoin

Struct Tx

Source
pub struct Tx { /* private fields */ }
Expand description

The progress reporter transmitter.

Implementations§

Source§

impl Tx

Source

pub fn id(&self) -> Id

The distinct ID.

Source

pub fn label<L: Into<String>>(self, label: L) -> Self

Set the label/name of the report.

howudoin::new().label("Report A");
Source

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);
Source

pub fn fmt_as_bytes(self, fmt_as_bytes: bool) -> Self

Flag to format the position as bytes.

Source

pub fn desc<D: Into<String>>(&self, desc: D) -> &Self

Set the report message.

let a = howudoin::new();
a.desc("processing");
Source

pub fn inc(&self) -> &Self

Increment the report 1 position.

let a = howudoin::new();
a.inc();
Source

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);
Source

pub fn set_pos<P: Into<u64>>(&self, pos: P) -> &Self

Set the report position.

let a = howudoin::new();
a.set_pos(5_u8);
Source

pub fn add_err<M: Into<String>>(&self, msg: M) -> &Self

Add an error message.

let a = howudoin::new();
a.add_err("fail!");
Source

pub fn add_warn<M: Into<String>>(&self, msg: M) -> &Self

Add an warning message.

let a = howudoin::new();
a.add_warn("careful...");
Source

pub fn add_info<M: Into<String>>(&self, msg: M) -> &Self

Add an information message.

let a = howudoin::new();
a.add_info("hello");
Source

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.

Source

pub fn cancelled(&self) -> bool

Check if the consumer loop has been flagged for cancellation.

It is up to the producer to decide what to do if cancellation is detected.

Source

pub fn finish(self)

Mark this report as finished but should be kept displayed.

Source

pub fn close(self)

Mark this report as finished and should be removed from display.

Trait Implementations§

Source§

impl Clone for Tx

Source§

fn clone(&self) -> Tx

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl PartialEq for Tx

Source§

fn eq(&self, other: &Tx) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for Tx

Source§

impl Eq for Tx

Source§

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.