1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
//! A generic cassandra protocol crate.
//! Built in coordination with cdrs-tokio but is flexible for many usecases.

#[macro_use]
mod macros;

pub mod frame;
pub mod query;
pub mod types;

pub mod authenticators;
pub mod compression;
pub mod consistency;
pub mod error;
pub mod events;
pub mod token;

pub type Error = error::Error;
pub type Result<T> = error::Result<T>;