Docs.rs
clickhouse-postgres-client-0.2.0
clickhouse-postgres-client 0.2.0
Permalink
Docs.rs crate page
Apache-2.0
OR
MIT
Links
Homepage
Repository
crates.io
Source
Owners
vkill
Dependencies
clickhouse-data-value ^0.3
normal
optional
num-bigint ^0.4
normal
optional
sqlx-clickhouse-ext ^0.2
normal
url ^2
normal
chrono ^0.4
dev
tokio ^1
dev
Versions
0%
of the crate is documented
Platform
i686-pc-windows-msvc
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
clickhouse_
postgres_
client
0.2.0
Clickhouse
PgPool
Aliased Type
Trait Implementations
ExecutorExt<'c, 'q, 'async_trait, ClickhousePgRow>
In crate clickhouse_
postgres_
client
clickhouse_postgres_client
Type Alias
ClickhousePgPool
Copy item path
Source
pub type ClickhousePgPool =
PgPool
;
Aliased Type
§
pub struct ClickhousePgPool(
/* private fields */
);
Trait Implementations
§
Source
§
impl<'c, 'q, 'async_trait>
ExecutorExt
<'c, 'q, 'async_trait,
ClickhousePgRow
> for &'c
ClickhousePgPool
where 'c: 'async_trait, 'q: 'async_trait,
Source
§
fn
execute
( self, sql: &'q
str
, ) ->
Pin
<
Box
<dyn
Future
<Output =
Result
<
()
,
Error
>> +
Send
+ 'async_trait>>
Source
§
fn
fetch_all
( self, sql: &'q
str
, ) ->
Pin
<
Box
<dyn
Future
<Output =
Result
<
Vec
<T>,
Error
>> +
Send
+ 'async_trait>>
Source
§
fn
fetch_one
( self, sql: &'q
str
, ) ->
Pin
<
Box
<dyn
Future
<Output =
Result
<T,
Error
>> +
Send
+ 'async_trait>>
Source
§
fn
fetch_optional
( self, sql: &'q
str
, ) ->
Pin
<
Box
<dyn
Future
<Output =
Result
<
Option
<T>,
Error
>> +
Send
+ 'async_trait>>