Enum dao::value::Array [] [src]

pub enum Array {
    Int(Vec<i32>),
    Float(Vec<f32>),
    Text(Vec<String>),
}

Variants

Trait Implementations

impl Debug for Array
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Array
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Array
[src]

[src]

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

[src]

This method tests for !=.

Auto Trait Implementations

impl Send for Array

impl Sync for Array