embedded_redis/network/
mod.rs1pub use client::{Client, CommandErrors};
2pub use future::Future;
3pub use handler::{ConnectionError, ConnectionHandler, Credentials};
4pub use protocol::{Resp2, Resp3};
5pub use response::MemoryParameters;
6
7pub(crate) mod buffer;
8pub(crate) mod client;
9pub(crate) mod future;
10pub(crate) mod handler;
11pub(crate) mod protocol;
12pub(crate) mod response;
13pub(crate) mod timeout;
14
15pub(crate) mod tests;
16
17#[cfg(feature = "mock")]
18pub use tests::mocks::{create_mocked_client, MockFrames, MockNetworkStack, NetworkMockBuilder};