1 2 3 4 5 6 7 8
use Separatable; impl Separatable for usize { fn separated_string(&self) -> String { let string = format!("{}", self); separated_uint!(string) } }
1 2 3 4 5 6 7 8
use Separatable; impl Separatable for usize { fn separated_string(&self) -> String { let string = format!("{}", self); separated_uint!(string) } }