clickhouse-rs 0.1.21

Tokio based asynchronous Yandex ClickHouse client library.
Documentation
1
2
3
4
5
6
use crate::errors::Error;

use futures::{Future, Stream};

pub type BoxFuture<T> = Box<dyn Future<Item = T, Error = Error> + Send>;
pub type BoxStream<T> = Box<dyn Stream<Item = T, Error = Error> + Send>;