Struct clickhouse_http_client::client::Client[][src]

pub struct Client { /* fields omitted */ }

Implementations

impl Client[src]

pub fn new() -> Result<Self, Error>[src]

pub async fn ping(&self) -> Result<bool, Error>[src]

pub async fn execute(
    &self,
    sql: impl AsRef<str>,
    settings: impl Into<Option<Settings<'_>>>
) -> Result<(), Error>
[src]

pub async fn insert_with_format<I: Input>(
    &self,
    sql_prefix: impl AsRef<str>,
    input: I,
    settings: impl Into<Option<Settings<'_>>>
) -> Result<(), Error>
[src]

pub async fn select_with_format<O: Output>(
    &self,
    sql: impl AsRef<str>,
    output: O,
    settings: impl Into<Option<Settings<'_>>>
) -> Result<(Vec<O::Row>, O::Info), Error>
[src]

Methods from Deref<Target = ClientConfig>

pub fn set_url(&mut self, val: impl AsRef<str>) -> Result<&mut Self, ParseError>[src]

pub fn set_database_to_url_parameter(
    &mut self,
    val: impl AsRef<str>
) -> &mut Self
[src]

pub fn set_database_to_header(
    &mut self,
    val: impl AsRef<str>
) -> Result<&mut Self, InvalidHeaderValue>
[src]

pub fn set_username_to_url_parameter(
    &mut self,
    val: impl AsRef<str>
) -> &mut Self
[src]

pub fn set_username_to_header(
    &mut self,
    val: impl AsRef<str>
) -> Result<&mut Self, InvalidHeaderValue>
[src]

pub fn set_password_to_url_parameter(
    &mut self,
    val: impl AsRef<str>
) -> &mut Self
[src]

pub fn set_password_to_header(
    &mut self,
    val: impl AsRef<str>
) -> Result<&mut Self, InvalidHeaderValue>
[src]

pub fn set_http_server_default_response(
    &mut self,
    val: impl Into<String>
) -> &mut Self
[src]

Trait Implementations

impl Clone for Client[src]

impl Debug for Client[src]

impl Deref for Client[src]

type Target = ClientConfig

The resulting type after dereferencing.

impl DerefMut for Client[src]

Auto Trait Implementations

impl !RefUnwindSafe for Client

impl Send for Client

impl Sync for Client

impl Unpin for Client

impl !UnwindSafe for Client

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> WithSubscriber for T[src]