1 2 3 4 5 6 7 8 9 10 11 12 13
//! Binary encoding utilities for `SQLite` changeset format. //! //! `SQLite` uses specific binary encodings for varints and value serialization. pub(crate) mod constants; pub(crate) mod serial; pub(crate) mod varint; pub(crate) use constants::{markers, op_codes}; pub use serial::Value; pub(crate) use serial::{ MaybeValue, decode_value, encode_defined_value, encode_undefined, encode_value, };