Skip to main content

steel_utils/codec/
mod.rs

1//! This module contains various codecs for reading and writing data.
2/// A module for a bit set.
3pub mod bit_set;
4/// A module for codec impl for glam crate.
5pub mod glam;
6/// A module for an Or type that can be one of two types.
7pub mod or;
8/// A module for a variable-length integer.
9pub mod var_int;
10/// A module for a variable-length long integer.
11pub mod var_long;
12/// A module for a variable-length unsigned integer.
13pub mod var_uint;
14
15pub use bit_set::BitSet;
16pub use or::Or;
17pub use var_int::VarInt;
18pub use var_long::VarLong;
19pub use var_uint::VarUint;