Open ArunGust opened 3 years ago
Try to specify the version explicitly.
clickhouse-rs = "1.0.0-alpha.5"
No, didnt work . I still get same error
`GetHandle` is not a future
the trait `futures::Future` is not implemented for `GetHandle`rustcE0277
future.rs(99, 5): required by `futures::Future::poll`
clickhouse_rs::pool::Pool
pub fn new<O>(options: O) -> Self
where
O: IntoOptions,
No, didnt work . I still get same error
`GetHandle` is not a future the trait `futures::Future` is not implemented for `GetHandle`rustcE0277 future.rs(99, 5): required by `futures::Future::poll` clickhouse_rs::pool::Pool pub fn new<O>(options: O) -> Self where O: IntoOptions,
I have the same problem.
No, didnt work . I still get same error
`GetHandle` is not a future the trait `futures::Future` is not implemented for `GetHandle`rustcE0277 future.rs(99, 5): required by `futures::Future::poll` clickhouse_rs::pool::Pool pub fn new<O>(options: O) -> Self where O: IntoOptions,
I modified it this way and everything was fine:
clickhouse-rs = "1.0.0-alpha.1"
i get same error
I got below error, any idea ?
let mut client = pool.get_handle().await?; | ^^^^^^^^^^^^^^^^^^^^^^^
GetHandle
is not a futureMy Cargo.toml is below clickhouse-rs = "*"