rustis 0.19.3

Redis async driver for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod async_executor_strategy;
mod cluster_connection;
mod connection;
mod network_handler;
mod pub_sub_message;
mod reconnection_state;
mod sentinel_connection;
mod standalone_connection;
mod version;

pub(crate) use async_executor_strategy::*;
pub(crate) use cluster_connection::*;
pub(crate) use connection::*;
pub(crate) use network_handler::*;
pub(crate) use reconnection_state::*;
pub(crate) use sentinel_connection::*;
pub(crate) use standalone_connection::*;
pub(crate) use version::*;