Struct trimmer::Number [] [src]

pub struct Number(_);

An internal representation of a number that may be integer of real

Use into() conversion to make the value.

Trait Implementations

impl Debug for Number
[src]

[src]

Formats the value using the given formatter.

impl From<i8> for Number
[src]

[src]

Performs the conversion.

impl From<i16> for Number
[src]

[src]

Performs the conversion.

impl From<i32> for Number
[src]

[src]

Performs the conversion.

impl From<i64> for Number
[src]

[src]

Performs the conversion.

impl From<u8> for Number
[src]

[src]

Performs the conversion.

impl From<u16> for Number
[src]

[src]

Performs the conversion.

impl From<u32> for Number
[src]

[src]

Performs the conversion.

impl From<u64> for Number
[src]

[src]

Performs the conversion.

impl From<usize> for Number
[src]

[src]

Performs the conversion.

impl From<isize> for Number
[src]

[src]

Performs the conversion.

impl From<f32> for Number
[src]

[src]

Performs the conversion.

impl From<f64> for Number
[src]

[src]

Performs the conversion.