dxf 0.6.1

A rust crate for reading and writing DXF and DXB CAD files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::{Handle, Point};

#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serialize", derive(serde::Serialize, serde::Deserialize))]
pub enum DataTableValue {
    Boolean(bool),
    Integer(i32),
    Double(f64),
    Str(String),
    Point2D(Point),
    Point3D(Point),
    Handle(Handle),
}