[][src]Struct numerics::Numerics

pub struct Numerics { /* fields omitted */ }

Numerics can be configured to convert integer primitives into their respective english word serializations.

Implementations

impl Numerics[src]

pub fn builder() -> NumericsBuilder[src]

Configure a Numerics instance.

pub fn default() -> Self[src]

Return a default-configured instance.

pub fn convert_number<T>(&self, number: T) -> Result<Vec<String>, NumericsError> where
    T: Integer + PrimInt + SignedAndUnsigned + AsPrimitive<u64>, 
[src]

Convert a number into string.

use numerics::Numerics;
let converter = Numerics::default();

assert_eq!(converter.convert_number(123).unwrap(),
  vec!["one".to_string(), "hundred".to_string(), "twenty".to_string(), "three".to_string()]);

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.