1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
// Copyright (c) IxMilia.  All Rights Reserved.  Licensed under the Apache License, Version 2.0.  See License.txt in the project root for license information.

use ::Point;

#[derive(Clone, Debug, PartialEq)]
pub enum DataTableValue {
    Boolean(bool),
    Integer(i32),
    Double(f64),
    Str(String),
    Point2D(Point),
    Point3D(Point),
    Handle(u32),
}