ion_rs/binary/
mod.rs

1// Copyright Amazon.com, Inc. or its affiliates.
2
3//! This module provides the necessary structures and logic to read values from a binary Ion
4//! data stream.
5
6// Public as a workaround for: https://github.com/amazon-ion/ion-rust/issues/484
7pub mod constants;
8
9pub mod binary_writer;
10pub mod decimal;
11mod header;
12pub mod int;
13mod nibbles;
14pub mod non_blocking;
15pub mod raw_binary_writer;
16pub mod timestamp;
17pub(crate) mod type_code;
18pub mod uint;
19pub mod var_int;
20pub mod var_uint;
21
22pub use type_code::IonTypeCode;