Enum utah::mixedtypes::InnerType [] [src]

pub enum InnerType {
    Float(f64),
    Int64(i64),
    Int32(i32),
    Str(String),
    Empty,
}

Variants

Trait Implementations

impl Decodable for InnerType
[src]

Deserialize a value using a Decoder.

impl Clone for InnerType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for InnerType
[src]

Formats the value using the given formatter.

impl AsMut<InnerType> for InnerType
[src]

Performs the conversion.

impl Mul for InnerType
[src]

The resulting type after applying the * operator

The method for the * operator

impl Eq for InnerType
[src]

impl Ord for InnerType
[src]

This method returns an Ordering between self and other. Read more

impl PartialOrd for InnerType
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialEq for InnerType
[src]

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

This method tests for !=.

impl Div for InnerType
[src]

The resulting type after applying the / operator

The method for the / operator

impl Add for InnerType
[src]

The resulting type after applying the + operator

The method for the + operator

impl Sub for InnerType
[src]

The resulting type after applying the - operator

The method for the - operator

impl One for InnerType
[src]

Returns the multiplicative identity element of Self, 1. Read more

impl Zero for InnerType
[src]

Returns the additive identity element of Self, 0. Read more

Returns true if self is equal to the additive identity.

impl Empty<InnerType> for InnerType
[src]

impl Default for InnerType
[src]

Returns the "default value" for a type. Read more

impl From<f64> for InnerType
[src]

Performs the conversion.

impl From<i64> for InnerType
[src]

Performs the conversion.

impl From<i32> for InnerType
[src]

Performs the conversion.

impl<'a> From<&'a i64> for InnerType
[src]

Performs the conversion.

impl<'a> From<&'a i32> for InnerType
[src]

Performs the conversion.

impl<'a, 'b> From<&'b &'a str> for InnerType
[src]

Performs the conversion.

impl<'a> From<&'a str> for InnerType
[src]

Performs the conversion.

impl From<String> for InnerType
[src]

Performs the conversion.

impl<'a> From<&'a String> for InnerType
[src]

Performs the conversion.

impl FromStr for InnerType
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more