Struct eetf::Float [] [src]

pub struct Float {
    pub value: f64,
}

Floating point number

Fields

The value of the number

Trait Implementations

impl ToPrimitive for Float
[src]

Converts the value of self to an i64.

Converts the value of self to an u64.

Converts the value of self to an f64.

Converts the value of self to an isize.

Converts the value of self to an i8.

Converts the value of self to an i16.

Converts the value of self to an i32.

Converts the value of self to a usize.

Converts the value of self to an u8.

Converts the value of self to an u16.

Converts the value of self to an u32.

Converts the value of self to an f32.

impl Debug for Float
[src]

Formats the value using the given formatter.

impl PartialEq for Float
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for Float
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for Float
[src]

Formats the value using the given formatter. Read more

impl From<f32> for Float
[src]

Performs the conversion.

impl From<f64> for Float
[src]

Performs the conversion.