[][src]Struct rdkafka::config::ClientConfig

pub struct ClientConfig {
    pub log_level: RDKafkaLogLevel,
    // some fields omitted
}

Client configuration.

Fields

log_level: RDKafkaLogLevel

The librdkafka logging level. Refer to RDKafkaLogLevel for the list of available levels.

Methods

impl ClientConfig[src]

pub fn new() -> ClientConfig[src]

Creates a new empty configuration.

pub fn set<'a>(&'a mut self, key: &str, value: &str) -> &'a mut ClientConfig[src]

Sets a new parameter in the configuration.

pub fn set_log_level(&mut self, log_level: RDKafkaLogLevel) -> &mut ClientConfig[src]

Sets the log level of the client. If not specified, the log level will be calculated based on the global log level of the log crate.

pub fn create_native_config(&self) -> KafkaResult<NativeClientConfig>[src]

Returns the native rdkafka-sys configuration.

pub fn create<T: FromClientConfig>(&self) -> KafkaResult<T>[src]

Uses the current configuration to create a new Consumer or Producer.

pub fn create_with_context<C, T>(&self, context: C) -> KafkaResult<T> where
    C: ClientContext,
    T: FromClientConfigAndContext<C>, 
[src]

Uses the current configuration and the provided context to create a new Consumer or Producer.

Trait Implementations

impl Clone for ClientConfig[src]

impl Default for ClientConfig[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, 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.