[][src]Struct numerics::NumericsBuilder

pub struct NumericsBuilder { /* fields omitted */ }

NumericsBuilder lets you configure a Numerics instance.

Implementations

impl NumericsBuilder[src]

pub fn set_custom_negative_word(self, word: Option<&str>) -> NumericsBuilder[src]

Set a custom word to use to denote negative numbers. By default 'negative' is used, but you might want to use "minus" or some other word. You can unset your override by supplying 'None'.

pub fn build(self) -> Numerics[src]

Creates the Numerics instance, consuming the NumericsBuilder.

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.