xcell_types/
lib.rs

1#![allow(clippy::get_first)]
2
3pub use stream_io::{ByteOrder, StreamReader, StreamWriter};
4
5pub use self::{
6    array::{ArrayDescription, ArrayKind},
7    boolean::BooleanDescription,
8    decimal::{DecimalDescription, DecimalKind},
9    integer::{IntegerDescription, IntegerKind},
10    string::StringDescription,
11    typing::*,
12    value::{color::ColorDescription, time::TimeDescription, XCellValue},
13    vector::VectorDescription,
14};
15pub use xcell_errors::for_3rd::DateTime;
16
17pub(crate) mod utils;
18
19mod array;
20mod boolean;
21pub mod codegen;
22mod custom;
23mod decimal;
24pub mod enumerate;
25mod integer;
26mod string;
27mod typing;
28mod value;
29mod vector;