Struct HumanFloatCount

pub struct HumanFloatCount(pub f64);

Formats counts for human readability using commas for floats

Fields

0: f64

Trait Implementations

impl Debug for HumanFloatCount

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

impl Display for HumanFloatCount

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

Auto Trait Implementations

impl Freeze for HumanFloatCount

impl RefUnwindSafe for HumanFloatCount

impl Send for HumanFloatCount

impl Sync for HumanFloatCount

impl Unpin for HumanFloatCount

impl UnsafeUnpin for HumanFloatCount

impl UnwindSafe for HumanFloatCount

Blanket Implementations

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

fn type_id(&self) -> TypeId

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

fn borrow(&self) -> &T

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

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

impl<T> From<T> for HumanFloatCount

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> ToString for HumanFloatCount where T: Display + ?Sized,

fn to_string(&self) -> String

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

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, U> TryFrom<U> for HumanFloatCount where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

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

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