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
30
31
32
33
34
35
36
37
// SPDX-License-Identifier: ISC
//! Streaming text DXF to binary DXF converter.
//!
//! Mechanically converts text-format DXF files to the AutoCAD binary DXF
//! format without interpreting the DXF structure. The core library is
//! `no_std`; an optional `std` feature adds a [`StreamConverter`] that
//! bridges [`std::io::BufRead`] to [`std::io::Read`].
extern crate alloc;
extern crate std;
/// Binary DXF output sink and the [`Output`] byte-writer trait.
/// Streaming converter state machine and one-shot [`convert_all`] helper.
/// Error types returned by the converter and sink operations.
/// DXF group code classification into [`ValueType`]s.
/// `std`-only [`StreamConverter`] adapter (`BufRead` to `Read`).
/// The [`Sink`] trait for receiving typed DXF values.
pub use ;
pub use ;
pub use Error;
pub use ;
pub use StreamConverter;
pub use Sink;