Struct gix::progress::prodash::unit::human::Human

pub struct Human {
    pub name: &'static str,
    pub formatter: Formatter,
}
Available on crate feature unit-human only.
Expand description

A helper for formatting numbers in a format easily read by humans in renderers, as in 2.54 million objects

Fields§

§name: &'static str

The name of the represented unit, like ‘items’ or ‘objects’.

§formatter: Formatter

The formatter to format the actual numbers.

Implementations§

§

impl Human

pub fn new(formatter: Formatter, name: &'static str) -> Human

A convenience method to create a new new instance and its formatter and name fields.

Trait Implementations§

§

impl Debug for Human

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl DisplayValue for Human

§

fn display_current_value( &self, w: &mut dyn Write, value: usize, _upper: Option<usize> ) -> Result<(), Error>

Display the absolute value representing the current progress of an operation and write it to w. Read more
§

fn display_upper_bound( &self, w: &mut dyn Write, upper_bound: usize, _value: usize ) -> Result<(), Error>

Emit the upper_bound to w. Read more
§

fn dyn_hash(&self, state: &mut dyn Hasher)

A way to hash our state without using generics. Read more
§

fn display_unit(&self, w: &mut dyn Write, _value: usize) -> Result<(), Error>

Emit the unit of value to w. Read more
§

fn separator( &self, w: &mut dyn Write, _value: usize, _upper: Option<usize> ) -> Result<(), Error>

Emit a token to separate two values. Read more
§

fn display_percentage( &self, w: &mut dyn Write, percentage: f64 ) -> Result<(), Error>

Emit percentage to w.
§

fn display_throughput( &self, w: &mut dyn Write, throughput: &Throughput ) -> Result<(), Error>

Emit the throughput of an operation to w.
§

fn fraction_and_time_unit( &self, timespan: Duration ) -> (Option<f64>, &'static str)

Given a timespan, return a fraction of the timespan based on the given unit, i.e. (possible fraction, unit).

Auto Trait Implementations§

§

impl RefUnwindSafe for Human

§

impl Send for Human

§

impl Sync for Human

§

impl Unpin for Human

§

impl UnwindSafe for Human

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. 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 Twhere 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.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

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

§

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 Twhere U: TryFrom<T>,

§

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.