[][src]Trait separator::Separatable

pub trait Separatable {
    fn separated_string(&self) -> String;
}

Used for numbers that can be printed with separators for the thousands places.

Required methods

fn separated_string(&self) -> String

Converts the number to a string with thousands separator.

Loading content...

Implementations on Foreign Types

impl Separatable for f32[src]

impl Separatable for f64[src]

impl Separatable for i16[src]

impl Separatable for i32[src]

impl Separatable for i64[src]

impl Separatable for i128[src]

impl Separatable for u16[src]

impl Separatable for u32[src]

impl Separatable for u64[src]

impl Separatable for u128[src]

impl Separatable for usize[src]

Loading content...

Implementors

Loading content...