1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright Amazon.com, Inc. or its affiliates.

//! This module provides the necessary structures and logic to read values from a binary Ion
//! data stream.

// Public as a workaround for: https://github.com/amazon-ion/ion-rust/issues/484
pub mod constants;

pub mod binary_writer;
pub mod decimal;
mod header;
pub mod int;
mod nibbles;
pub mod non_blocking;
pub mod raw_binary_writer;
pub mod timestamp;
pub(crate) mod type_code;
pub mod uint;
pub mod var_int;
pub mod var_uint;

pub use type_code::IonTypeCode;