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