Enum visctl::Value[][src]

pub enum Value {
    Null,
    Bool(bool),
    Number(f64),
    String(String),
}

Variants

Methods

impl Value
[src]

Trait Implementations

impl Debug for Value
[src]

Formats the value using the given formatter. Read more

impl From<Value> for Value
[src]

Performs the conversion.

impl From<bool> for Value
[src]

Performs the conversion.

impl From<f64> for Value
[src]

Performs the conversion.

impl From<String> for Value
[src]

Performs the conversion.

impl Display for Value
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Value

impl Sync for Value