Enum ncl::value::Value [] [src]

pub enum Value {
    Str(String),
    Num(i64),
    Bool(bool),
    Object(Box<Object>),
}

Variants

Trait Implementations

impl Debug for Value
[src]

Formats the value using the given formatter.

impl PartialEq for Value
[src]

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

This method tests for !=.

impl From<String> for Value
[src]

Performs the conversion.

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

Performs the conversion.

impl From<i64> for Value
[src]

Performs the conversion.

impl From<bool> for Value
[src]

Performs the conversion.

impl From<Object> for Value
[src]

Performs the conversion.

impl<'a> Into<Option<String>> for &'a Value
[src]

Performs the conversion.

impl<'a> Into<Option<i64>> for &'a Value
[src]

Performs the conversion.

impl<'a> Into<Option<bool>> for &'a Value
[src]

Performs the conversion.