Struct eetf::FixInteger [] [src]

pub struct FixInteger {
    pub value: i32,
}

Fixed width integer.

Fields

The value of the integer

Trait Implementations

impl ToPrimitive for FixInteger
[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 ToBigInt for FixInteger
[src]

Converts the value of self to a BigInt.

impl ToBigUint for FixInteger
[src]

Converts the value of self to a BigUint.

impl Debug for FixInteger
[src]

Formats the value using the given formatter.

impl PartialEq for FixInteger
[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 FixInteger
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for FixInteger
[src]

Formats the value using the given formatter. Read more

impl From<u8> for FixInteger
[src]

Performs the conversion.

impl From<i8> for FixInteger
[src]

Performs the conversion.

impl From<u16> for FixInteger
[src]

Performs the conversion.

impl From<i16> for FixInteger
[src]

Performs the conversion.

impl From<i32> for FixInteger
[src]

Performs the conversion.