oracle_rs/buffer/
mod.rs

1//! Buffer abstractions for TNS protocol encoding/decoding
2//!
3//! This module provides efficient buffer types for reading and writing
4//! binary TNS protocol data.
5
6mod read;
7mod write;
8
9pub use read::ReadBuffer;
10pub use write::WriteBuffer;