Enum rink::value::Value [] [src]

pub enum Value {
    Number(Number),
    DateTime(GenericDateTime),
    Substance(Substance),
}

Variants

Methods

impl Value
[src]

Trait Implementations

impl Clone for Value
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Value
[src]

Formats the value using the given formatter.

impl Show for Value
[src]

Provides a string representation of something, using information contained in a Context.

impl<'a, 'b> Add<&'b Value> for &'a Value
[src]

The resulting type after applying the + operator

The method for the + operator

impl<'a, 'b> Sub<&'b Value> for &'a Value
[src]

The resulting type after applying the - operator

The method for the - operator

impl<'a> Neg for &'a Value
[src]

The resulting type after applying the - operator

The method for the unary - operator

impl<'a, 'b> Mul<&'b Value> for &'a Value
[src]

The resulting type after applying the * operator

The method for the * operator

impl<'a, 'b> Div<&'b Value> for &'a Value
[src]

The resulting type after applying the / operator

The method for the / operator