solidb_client/protocol/
mod.rs

1//! Wire protocol definitions for the native driver
2//!
3//! Uses MessagePack for efficient binary serialization.
4
5pub mod codec;
6pub mod command;
7pub mod error;
8pub mod response;
9pub mod types;
10
11pub use codec::{
12    decode_message, encode_command, encode_message, encode_response, DRIVER_MAGIC, MAX_MESSAGE_SIZE,
13};
14pub use command::Command;
15pub use error::DriverError;
16pub use response::Response;
17pub use types::IsolationLevel;