Enum aflak_plot::Value[][src]

pub enum Value {
    Integer(i64),
    Float(f32),
    Float2([f32; 2]),
    Float3([f32; 3]),
}

Variants

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. Read more

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<i64> for Value
[src]

Performs the conversion.

impl From<f32> for Value
[src]

Performs the conversion.

impl From<[f32; 2]> for Value
[src]

Performs the conversion.

impl From<[f32; 3]> for Value
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Value

impl Sync for Value