clicktype-transport 0.2.0

Transport layer for ClickType - HTTP client for ClickHouse
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Transport layer for ClickType

pub mod client;
pub mod pool;
pub mod error;
pub mod traits;
#[cfg(feature = "mock")]
pub mod mock;

// Re-exports
pub use client::{Client, ClientBuilder, Compression};
pub use pool::{Pool, PoolConfig, PooledClient};
pub use error::{Error, Result};
pub use traits::ClickTypeTransport;
#[cfg(feature = "mock")]
pub use mock::MockClient;