Struct clickhouse_http_client::client::ClientBuilder[][src]

pub struct ClientBuilder { /* fields omitted */ }

Implementations

impl ClientBuilder[src]

pub fn new() -> Self[src]

pub fn configurable<F>(self, func: F) -> Self where
    F: FnOnce(HttpClientBuilder) -> HttpClientBuilder
[src]

pub fn build(self) -> Result<Client, 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 Debug for ClientBuilder[src]

impl Default for ClientBuilder[src]

impl Deref for ClientBuilder[src]

type Target = ClientConfig

The resulting type after dereferencing.

impl DerefMut for ClientBuilder[src]

Auto Trait Implementations

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, 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]