-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.rs
More file actions
45 lines (41 loc) · 1.16 KB
/
Copy pathlib.rs
File metadata and controls
45 lines (41 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//! # Cassander
//!
//! The `cassander` crate provides idiomatic Rust bindings to the DataStax C++
//! driver for Apache Cassandra. The crate is a work in progress and is not
//! feature complete. The crate is not yet ready for production use.
mod cluster;
mod config;
mod consistency;
mod error;
pub(crate) mod ffi;
pub(crate) mod future;
mod load_balancing_policy;
mod retry_policy;
mod routing;
mod session;
mod speculative_execution_policy;
mod ssl;
mod ssl_verify_flags;
mod timestamp_gen;
mod version;
pub mod allocator;
pub mod authenticator;
pub mod cql;
pub mod logging;
pub(crate) use cluster::Cluster;
pub use config::*;
pub use consistency::*;
pub use error::*;
pub use load_balancing_policy::*;
pub(crate) use retry_policy::CassRetryPolicy;
pub use retry_policy::*;
pub use routing::*;
pub use session::*;
pub use speculative_execution_policy::*;
pub use ssl::*;
pub use ssl_verify_flags::*;
pub use timestamp_gen::*;
pub use version::*;
// TODO: How do we support different versions of the C++ driver? Some functions
// are only available in newer versions of the driver. We need to be able
// to conditionally compile code based on the version of the driver.